removed unnecessary packages

This commit is contained in:
Ramon Perez 2025-08-29 18:35:12 +10:00
parent 0d51a13cc7
commit 77877ec15f
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,6 @@
// @ts-check
import { defineConfig } from 'astro/config'
import starlight from '@astrojs/starlight'
import starlightThemeNext from 'starlight-theme-next'
import starlightThemeRapide from 'starlight-theme-rapide'
import starlightSidebarTopics from 'starlight-sidebar-topics'
import mermaid from 'astro-mermaid'

View File

@ -1,11 +1,10 @@
import { defineCollection, z } from 'astro:content'
import { docsLoader } from '@astrojs/starlight/loaders'
import { docsSchema } from '@astrojs/starlight/schema'
import { videosSchema } from 'starlight-videos/schemas'
export const collections = {
docs: defineCollection({
loader: docsLoader(),
schema: docsSchema({ extend: videosSchema }),
schema: docsSchema(),
}),
}