From 8c4539145f0b6a735b65852b2f2b1a7e9f5a9c3f Mon Sep 17 00:00:00 2001 From: Nin3 <30520689+Nin3lee@users.noreply.github.com> Date: Fri, 7 Jun 2024 18:52:59 +0800 Subject: [PATCH] fix(astro:) config reference typo (#11205) Co-authored-by: Florian Lefebvre --- .changeset/six-kangaroos-beam.md | 5 +++++ packages/astro/src/@types/astro.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/six-kangaroos-beam.md diff --git a/.changeset/six-kangaroos-beam.md b/.changeset/six-kangaroos-beam.md new file mode 100644 index 0000000000..e77dea7735 --- /dev/null +++ b/.changeset/six-kangaroos-beam.md @@ -0,0 +1,5 @@ +--- +"astro": patch +--- + +Fixes a typo in the config reference diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 13d9cff815..70e09d6c43 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -2106,7 +2106,7 @@ export interface AstroUserConfig { * * There are currently three data types supported: strings, numbers and booleans. * - * There are three kinds of environment variables, determined by the combination of `context` (client or server) and `access` (private or public) settings defined in your [`env.schema`](#experimentalenvschema): + * There are three kinds of environment variables, determined by the combination of `context` (client or server) and `access` (secret or public) settings defined in your [`env.schema`](#experimentalenvschema): * * - **Public client variables**: These variables end up in both your final client and server bundles, and can be accessed from both client and server through the `astro:env/client` module: *