diff options
author | 2024-08-29 14:00:40 -0300 | |
---|---|---|
committer | 2024-08-29 14:00:40 -0300 | |
commit | 01b48a466e9ab58a2ad3603a2e8ed787f550b031 (patch) | |
tree | 520fa7057439d7315e5b30cdf11ecf8dbbcc8e97 | |
parent | 342b9a9fd163bc9207a9ba70fa37fb0bebe6a12e (diff) | |
download | astro-01b48a466e9ab58a2ad3603a2e8ed787f550b031.tar.gz astro-01b48a466e9ab58a2ad3603a2e8ed787f550b031.tar.zst astro-01b48a466e9ab58a2ad3603a2e8ed787f550b031.zip |
[docs] formatting for config ref docs (#11876)
-rw-r--r-- | packages/astro/src/types/public/config.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/astro/src/types/public/config.ts b/packages/astro/src/types/public/config.ts index d39b2f3d6..9166ddcbe 100644 --- a/packages/astro/src/types/public/config.ts +++ b/packages/astro/src/types/public/config.ts @@ -468,7 +468,7 @@ export interface AstroUserConfig { * @name security.checkOrigin * @kind h4 * @type {boolean} - * @default 'true' + * @default `true` * @version 4.9.0 * @description * @@ -1418,13 +1418,16 @@ export interface AstroUserConfig { /** * @docs + * @kind heading * @name env * @type {object} * @default `{}` * @version 5.0.0 * @description * - * Holds `astro:env` options. + * Configuration options for type-safe environment variables. + * + * See our guide for more information on [environment variables in Astro](/en/guides/environment-variables/). */ env?: { /** |