diff options
author | 2023-06-06 11:21:19 -0500 | |
---|---|---|
committer | 2023-06-06 11:21:19 -0500 | |
commit | 5ed2a2f666707e579e18f2890ab89b7cc6f717c3 (patch) | |
tree | 9895d49bc5bd33a63ff0f2e94053e771a54b9dc4 /examples/docs/src/content/config.ts | |
parent | d5a089810f8218f694ac56591648d36051708560 (diff) | |
download | astro-5ed2a2f666707e579e18f2890ab89b7cc6f717c3.tar.gz astro-5ed2a2f666707e579e18f2890ab89b7cc6f717c3.tar.zst astro-5ed2a2f666707e579e18f2890ab89b7cc6f717c3.zip |
chore: remove docs example (#7306)
Diffstat (limited to 'examples/docs/src/content/config.ts')
-rw-r--r-- | examples/docs/src/content/config.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/docs/src/content/config.ts b/examples/docs/src/content/config.ts deleted file mode 100644 index 2780035b1..000000000 --- a/examples/docs/src/content/config.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { defineCollection, z } from 'astro:content'; -import { SITE } from '../consts'; - -const docs = defineCollection({ - schema: z.object({ - title: z.string().default(SITE.title), - description: z.string().default(SITE.description), - lang: z.literal('en-us').default(SITE.defaultLanguage), - dir: z.union([z.literal('ltr'), z.literal('rtl')]).default('ltr'), - image: z - .object({ - src: z.string(), - alt: z.string(), - }) - .optional(), - ogLocale: z.string().optional(), - }), -}); - -export const collections = { docs }; |