diff --git a/.changeset/cruel-drinks-own.md b/.changeset/cruel-drinks-own.md new file mode 100644 index 000000000000..c9eb821fa3d0 --- /dev/null +++ b/.changeset/cruel-drinks-own.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fixes an error in the docs that specified an incorrect version for the `security.allowedDomains` release. diff --git a/packages/astro/src/types/public/config.ts b/packages/astro/src/types/public/config.ts index db30ffb41ced..ba49aeb92d17 100644 --- a/packages/astro/src/types/public/config.ts +++ b/packages/astro/src/types/public/config.ts @@ -597,7 +597,7 @@ export interface AstroUserConfig< * @name security.allowedDomains * @type {RemotePattern[]} * @default `[]` - * @version 5.15.0 + * @version 5.14.2 * @description * * Defines a list of permitted host patterns for incoming requests when using SSR. When configured, Astro will validate the `X-Forwarded-Host` header @@ -1506,7 +1506,7 @@ export interface AstroUserConfig< * @default `{ type: 'shiki', excludeLangs: ['math'] }` * @description * Which syntax highlighter to use for Markdown code blocks (\`\`\`), if any. This determines the CSS classes that Astro will apply to your Markdown code blocks. - * + * * - `shiki` - use the [Shiki](https://shiki.style) highlighter (`github-dark` theme configured by default) * - `prism` - use the [Prism](https://prismjs.com/) highlighter and [provide your own Prism stylesheet](https://docs.astro.build/en/guides/syntax-highlighting/#add-a-prism-stylesheet) * - `false` - do not apply syntax highlighting.