diff --git a/src/content/config.ts b/src/content/config.ts index e0233b3..4f92c31 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -1,7 +1,6 @@ -import { docsSchema, i18nSchema } from "@astrojs/starlight/schema"; +import { docsSchema } from "@astrojs/starlight/schema"; import { defineCollection } from "astro:content"; export const collections = { docs: defineCollection({ schema: docsSchema() }), - i18n: defineCollection({ type: "data", schema: i18nSchema() }), }; diff --git a/tsconfig.json b/tsconfig.json index 3cbb462..bcbf8b5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,3 @@ { - "extends": "astro/tsconfigs/strict", + "extends": "astro/tsconfigs/strict" }