d10c3dea21
* Replaced `--experimental-ssr` with `isBuildingToSSR` * changest * Improved `isBuildingToSSR` a bit * Added `isBuildingToSSR` to more places!!1! * Added `@deprecated` tag * Replaced missing experimentalSsr * Added failing test * Removed test * Re-added experimental ssr flag * Fixed typo Co-authored-by: Matthew Phillips <matthew@skypack.dev> * Fixed deno tests Co-authored-by: Matthew Phillips <matthew@skypack.dev>
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import deno from '@astrojs/deno';
|
|
|
|
export default defineConfig({
|
|
adapter: deno(),
|
|
buildOptions: { experimentalSsr: true }
|
|
})
|