diff options
Diffstat (limited to 'packages/integrations/netlify/README.md')
-rw-r--r-- | packages/integrations/netlify/README.md | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/integrations/netlify/README.md b/packages/integrations/netlify/README.md index d814fccd1..eb1ae8878 100644 --- a/packages/integrations/netlify/README.md +++ b/packages/integrations/netlify/README.md @@ -142,7 +142,7 @@ export default defineConfig({ ### Static sites -For static sites you usually don't need an adapter. However, if you use `redirects` configuration (experimental) in your Astro config, the Netlify adapter can be used to translate this to the proper `_redirects` format. +For static sites you usually don't need an adapter. However, if you use `redirects` configuration in your Astro config, the Netlify adapter can be used to translate this to the proper `_redirects` format. ```js import { defineConfig } from 'astro/config'; @@ -154,9 +154,6 @@ export default defineConfig({ redirects: { '/blog/old-post': '/blog/new-post', }, - experimental: { - redirects: true, - }, }); ``` |