diff options
author | 2022-04-05 01:02:20 +0000 | |
---|---|---|
committer | 2022-04-05 01:02:20 +0000 | |
commit | a85ea0772cd4d099e4ed51d83f8e92f0d9f70ad8 (patch) | |
tree | 2a5d301f3e88668682472bd7ca5d726bc5f3b082 | |
parent | 8425347cd51eef8fef4d2cd7210df39a6dc0da38 (diff) | |
download | astro-a85ea0772cd4d099e4ed51d83f8e92f0d9f70ad8.tar.gz astro-a85ea0772cd4d099e4ed51d83f8e92f0d9f70ad8.tar.zst astro-a85ea0772cd4d099e4ed51d83f8e92f0d9f70ad8.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/src/core/config.ts b/packages/astro/src/core/config.ts index cead6582c..c6b09b123 100644 --- a/packages/astro/src/core/config.ts +++ b/packages/astro/src/core/config.ts @@ -146,8 +146,8 @@ export const AstroConfigSchema = z.object({ mode: z .union([z.literal('md'), z.literal('mdx')]) .optional() - // NOTE: "mdx" allows us to parse/compile Astro components in markdown. - // TODO: This should probably be updated to something more like "md" | "astro" + // NOTE: "mdx" allows us to parse/compile Astro components in markdown. + // TODO: This should probably be updated to something more like "md" | "astro" .default('mdx'), syntaxHighlight: z .union([z.literal('shiki'), z.literal('prism'), z.literal(false)]) |