diff options
author | 2023-07-04 14:04:25 +0100 | |
---|---|---|
committer | 2023-07-04 14:04:25 +0100 | |
commit | c412e4a7bbc6f56b353aefcf13666d3b46f73dfa (patch) | |
tree | 927993b9a31f9ca205f5768e0cd71cc39a684d5c | |
parent | 47b756e3e11703387407692e189f34c31f8565d6 (diff) | |
download | astro-c412e4a7bbc6f56b353aefcf13666d3b46f73dfa.tar.gz astro-c412e4a7bbc6f56b353aefcf13666d3b46f73dfa.tar.zst astro-c412e4a7bbc6f56b353aefcf13666d3b46f73dfa.zip |
chore: fix incorrect default type (#7562)
-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 69c0ffed5..185401a89 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -830,7 +830,7 @@ export interface AstroUserConfig { * @docs * @name build.split * @type {boolean} - * @default {false} + * @default `false` * @version 2.7.0 * @description * Defines how the SSR code should be bundled when built. |