diff options
author | 2023-05-04 17:04:19 -0400 | |
---|---|---|
committer | 2023-05-04 17:04:19 -0400 | |
commit | 2ff31e5c7bafe038f1a036d7da2352ce188315e7 (patch) | |
tree | 188a012143e7198dda22ca9205e29e5934c55f7b | |
parent | 170140083c5374cdb458b890070953777eb6fcfb (diff) | |
download | astro-2ff31e5c7bafe038f1a036d7da2352ce188315e7.tar.gz astro-2ff31e5c7bafe038f1a036d7da2352ce188315e7.tar.zst astro-2ff31e5c7bafe038f1a036d7da2352ce188315e7.zip |
Fix formatting problem in experimental feature docs (#6997)
-rw-r--r-- | packages/astro/src/@types/astro.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index b7c5db5fc..441318e0b 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; }; |