4cf54c60aa
* Netlify Edge function support * Update readme with edge function information * Adds a changeset * Disable running edge function test in CI for now
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
|
|
}
|
|
})
|