ae9ac5cbdc
* Revert "Revert "Fixes using React.lazy and Suspense""
This reverts commit e621c2f7d3
.
* Adds a changeset
* Fix ts errors
* Remove netlify metadata folder
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import deno from '@astrojs/deno';
|
|
import react from '@astrojs/react';
|
|
|
|
export default defineConfig({
|
|
adapter: deno(),
|
|
integrations: [react()],
|
|
experimental: {
|
|
ssr: true
|
|
}
|
|
})
|