Fix failing SSR test (#5067)

This commit is contained in:
Bjorn Lu 2022-10-13 22:47:37 +08:00 committed by GitHub
parent 575bf9205e
commit ac6e2af73c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,5 +4,5 @@ import node from '@astrojs/node';
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
output: 'server', output: 'server',
adapter: node(), adapter: node({ mode: 'standalone' }),
}); });