ec745d689a
* Remove experimental flag for redirects config * Remove experimental from tests * Remove experimental CLI flag * Add changeset * Removing redirect test that is no longer relevant * Remove experimental label" * Update .changeset/dry-beers-grow.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/dry-beers-grow.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Remove old function --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
15 lines
485 B
Markdown
15 lines
485 B
Markdown
---
|
|
'astro': minor
|
|
---
|
|
|
|
Redirects configuration
|
|
|
|
This change moves the `redirects` configuration out of experimental. If you were previously using experimental redirects, remove the following experimental flag:
|
|
|
|
```js
|
|
experimental: {
|
|
redirects: true,
|
|
}
|
|
```
|
|
|
|
If you have been waiting for stabilization before using redirects, now you can do so. Check out [the docs on redirects](https://docs.astro.build/en/core-concepts/routing/#redirects) to learn how to use this built-in feature.
|