diff options
author | 2021-11-23 14:47:05 -0800 | |
---|---|---|
committer | 2021-11-23 14:47:05 -0800 | |
commit | 7476a92461c4ed3e9b879d3ee7669ba59d027248 (patch) | |
tree | 8d32e787f467b8efdcc2de52786cd306834c4d36 /docs/src/pages/reference | |
parent | 9ed6b3c0f00722436f4b30829046c1e9ef4e5765 (diff) | |
download | astro-7476a92461c4ed3e9b879d3ee7669ba59d027248.tar.gz astro-7476a92461c4ed3e9b879d3ee7669ba59d027248.tar.zst astro-7476a92461c4ed3e9b879d3ee7669ba59d027248.zip |
update repo URL (#1994)
Diffstat (limited to 'docs/src/pages/reference')
-rw-r--r-- | docs/src/pages/reference/configuration-reference.md | 2 | ||||
-rw-r--r-- | docs/src/pages/reference/renderer-reference.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/reference/configuration-reference.md b/docs/src/pages/reference/configuration-reference.md index 6cfcfad52..5946d3e67 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/%40types/astro.ts) +You can view the full configuration API (including information about default configuration) on [GitHub.](https://github.com/withastro/astro/blob/latest/packages/astro/src/%40types/astro.ts) ```js // Example: astro.config.mjs diff --git a/docs/src/pages/reference/renderer-reference.md b/docs/src/pages/reference/renderer-reference.md index 0e8dc1a79..2b589d8c4 100644 --- a/docs/src/pages/reference/renderer-reference.md +++ b/docs/src/pages/reference/renderer-reference.md @@ -14,7 +14,7 @@ A renderer is an NPM package that has two responsibilities: 1. _render a component to a static string of HTML_ at build time. 2. _rehydrate that HTML to create an interactive component_ on the client. -Take a look at any one of Astro's built-in [`renderers`](https://github.com/snowpackjs/astro/tree/main/packages/renderers) to see this in action. We'll go into more detail in the following sections. +Take a look at any one of Astro's built-in [`renderers`](https://github.com/withastro/astro/tree/main/packages/renderers) to see this in action. We'll go into more detail in the following sections. ## Building Your Own Renderer |