f3ab822e32
* Allow dynamic imports when using Netlify Edge Functions * Update deno test script and changeset
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
|
|
}
|
|
})
|