summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-05-04 17:04:19 -0400
committerGravatar GitHub <noreply@github.com> 2023-05-04 17:04:19 -0400
commit2ff31e5c7bafe038f1a036d7da2352ce188315e7 (patch)
tree188a012143e7198dda22ca9205e29e5934c55f7b
parent170140083c5374cdb458b890070953777eb6fcfb (diff)
downloadastro-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.ts3
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;
};