19667c45f3
* Netlify Edge: forward requests for static assets * Adds a changeset * Don't run edge tests, yet
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import { netlifyEdgeFunctions } from '@astrojs/netlify';
|
|
|
|
export default defineConfig({
|
|
adapter: netlifyEdgeFunctions({
|
|
dist: new URL('./dist/', import.meta.url),
|
|
}),
|
|
experimental: {
|
|
ssr: true
|
|
}
|
|
})
|