From 2ff31e5c7bafe038f1a036d7da2352ce188315e7 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Thu, 4 May 2023 17:04:19 -0400 Subject: [PATCH] Fix formatting problem in experimental feature docs (#6997) --- packages/astro/src/@types/astro.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index b7c5db5fc9..441318e0ba 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1050,6 +1050,7 @@ export interface AstroUserConfig { * assets: true, * }, * } + * ``` */ assets?: boolean; @@ -1070,6 +1071,7 @@ export interface AstroUserConfig { * inlineStylesheets: `auto`, * }, * } + * ``` */ inlineStylesheets?: 'always' | 'auto' | 'never'; @@ -1090,6 +1092,7 @@ export interface AstroUserConfig { * middleware: true, * }, * } + * ``` */ middleware?: boolean; };