diff options
author | 2023-07-12 10:48:38 -0300 | |
---|---|---|
committer | 2023-07-12 14:48:38 +0100 | |
commit | c38b0c49da50288f7f2d325d740355bca8ac1340 (patch) | |
tree | bd75ebed5cb3b9e5723b9e14c23fac293434e8b2 | |
parent | 0952a815b7a3ee931911c3aac346672deaa4721d (diff) | |
download | astro-c38b0c49da50288f7f2d325d740355bca8ac1340.tar.gz astro-c38b0c49da50288f7f2d325d740355bca8ac1340.tar.zst astro-c38b0c49da50288f7f2d325d740355bca8ac1340.zip |
Fix `build.excludeMiddleware` default type docs (#7630)
-rw-r--r-- | packages/astro/src/@types/astro.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index c25879806..47c7ecb71 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -854,7 +854,7 @@ export interface AstroUserConfig { * @docs * @name build.excludeMiddleware * @type {boolean} - * @default {false} + * @default `false` * @version 2.8.0 * @description * Defines whether or not any SSR middleware code will be bundled when built. |