0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00

Fix formatting problem in experimental feature docs (#6997)

This commit is contained in:
Matthew Phillips 2023-05-04 17:04:19 -04:00 committed by GitHub
parent 170140083c
commit 2ff31e5c7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};