astro/.changeset/fair-emus-divide.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
772 B
Markdown
Raw Normal View History

---
'astro': major
'@astrojs/netlify': minor
---
The configuration `build.split` and `build.excludeMiddleware` are deprecated.
Configuration that were inside the astro configuration, are now moved inside the adapter:
```diff
import {defineConfig} from "astro/config";
import netlify from "@astrojs/netlify/functions";
export default defineConfig({
- build: {
- excludeMiddleware: true
- },
- adapter: netlify()
+ adapter: netlify({
+ edgeMiddleware: true
+ })
})
```
```diff
import {defineConfig} from "astro/config";
import netlify from "@astrojs/netlify/functions";
export default defineConfig({
- build: {
- split: true
- },
- adapter: netlify()
+ adapter: netlify({
+ functionPerRoute: true
+ })
})
```