diff options
author | 2022-01-06 16:28:24 +0000 | |
---|---|---|
committer | 2022-01-06 16:28:24 +0000 | |
commit | 8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d (patch) | |
tree | 7ebe702820863821279430becabfa48119a6d5f2 /docs/src | |
parent | 7e8f7c7e9ede3ea36797a4559597f6596da32284 (diff) | |
download | astro-8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d.tar.gz astro-8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d.tar.zst astro-8b58ede2ccfc2e8db92f44f67e979cd9a0b1306d.zip |
[ci] yarn format
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/en/guides/environment-variables.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/en/guides/environment-variables.md b/docs/src/pages/en/guides/environment-variables.md index 1d3b9cfef..c8546c8d7 100644 --- a/docs/src/pages/en/guides/environment-variables.md +++ b/docs/src/pages/en/guides/environment-variables.md @@ -38,11 +38,11 @@ To achieve, you can create an `env.d.ts` in `src` directory, then augment `Impor ```ts interface ImportMetaEnv { - readonly PUBLIC_POKEAPI: string + readonly PUBLIC_POKEAPI: string; // more env variables... } interface ImportMeta { - readonly env: ImportMetaEnv + readonly env: ImportMetaEnv; } ``` |