diff options
author | 2023-10-17 16:08:27 +0000 | |
---|---|---|
committer | 2023-10-17 16:08:27 +0000 | |
commit | d25b00d914ae78535dc7668172284a546b0bce02 (patch) | |
tree | 37814f8d11c8b1820f2140d24eec4903b5663126 | |
parent | 2b8a459a6ae82c7a1d278ef263e316841295e7d6 (diff) | |
download | astro-d25b00d914ae78535dc7668172284a546b0bce02.tar.gz astro-d25b00d914ae78535dc7668172284a546b0bce02.tar.zst astro-d25b00d914ae78535dc7668172284a546b0bce02.zip |
[ci] format
-rw-r--r-- | packages/astro/src/@types/astro.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 8741b4074..a0fa48ddb 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -583,10 +583,10 @@ export interface AstroUserConfig { * The value of `import.meta.env.BASE_URL` will be determined by your `trailingSlash` config, no matter what value you have set for `base`. * * A trailing slash is always included if `trailingSlash: "always"` is set. If `trailingSlash: "never"` is set, `BASE_URL` will not include a trailing slash, even if `base` includes one. - * - * Additionally, Astro will internally manipulate the configured value of `config.base` before making it available to integrations. The value of `config.base` as read by integrations will also be determined by your `trailingSlash` configuration in the same way. * - * In the example below, the values of `import.meta.env.BASE_URL` and `config.base` when processed will both be `/docs`: + * Additionally, Astro will internally manipulate the configured value of `config.base` before making it available to integrations. The value of `config.base` as read by integrations will also be determined by your `trailingSlash` configuration in the same way. + * + * In the example below, the values of `import.meta.env.BASE_URL` and `config.base` when processed will both be `/docs`: * ```js * { * base: '/docs/', |