diff options
author | 2021-11-23 01:12:35 +0900 | |
---|---|---|
committer | 2021-11-22 09:12:35 -0700 | |
commit | f37c7ad2ad8d6f1f57e4e2453e7f4bf094a8a790 (patch) | |
tree | ffc4d14a9f621a8dc9884494ff761de89618641b /docs/src/pages/reference/configuration-reference.md | |
parent | 63df5fbf23c36a86d49f07b82aa2b59397d52f0e (diff) | |
download | astro-f37c7ad2ad8d6f1f57e4e2453e7f4bf094a8a790.tar.gz astro-f37c7ad2ad8d6f1f57e4e2453e7f4bf094a8a790.tar.zst astro-f37c7ad2ad8d6f1f57e4e2453e7f4bf094a8a790.zip |
docs: update link to AstroUserConfig type definitions (#1961)
* docs: update link to AstroUserConfig type definitions
addresses https://github.com/snowpackjs/astro/issues/1960
* docs: update link to `@types/astro.ts` to refer to the `latest` branch.
22b73e652d changes the branch to `main`, this changes back to use `latest`.
Diffstat (limited to '')
-rw-r--r-- | docs/src/pages/reference/configuration-reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/reference/configuration-reference.md b/docs/src/pages/reference/configuration-reference.md index d373bb053..6cfcfad52 100644 --- a/docs/src/pages/reference/configuration-reference.md +++ b/docs/src/pages/reference/configuration-reference.md @@ -5,7 +5,7 @@ title: Configuration Reference To configure Astro, add an `astro.config.mjs` file in the root of your project. All settings are optional. -You can view the full configuration API (including information about default configuration) on [GitHub.](https://github.com/snowpackjs/astro/blob/latest/packages/astro/src/@types/astro.ts) +You can view the full configuration API (including information about default configuration) on [GitHub.](https://github.com/snowpackjs/astro/blob/latest/packages/astro/src/%40types/astro.ts) ```js // Example: astro.config.mjs |