diff options
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 |