chore: update codesamples for Netlify v3 adapter (#8112)

This commit is contained in:
Elian ☕️ 2023-08-17 10:00:46 +02:00 committed by GitHub
parent ca4cf01100
commit 7a625d9bad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -115,10 +115,9 @@ import netlify from '@astrojs/netlify/functions';
export default defineConfig({
output: 'server',
adapter: netlify(),
build: {
split: true,
},
adapter: netlify({
functionPerRoute: true
}),
});
```