summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
};