summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2022-10-13 22:47:37 +0800
committerGravatar GitHub <noreply@github.com> 2022-10-13 10:47:37 -0400
commitac6e2af73c4c02d3fb0ec90420479f3716593556 (patch)
tree94c3142168ba8b9923cae10dd4b0177c222a3920
parent575bf9205e7b5875c6b95d49339ff448f59eaad4 (diff)
downloadastro-ac6e2af73c4c02d3fb0ec90420479f3716593556.tar.gz
astro-ac6e2af73c4c02d3fb0ec90420479f3716593556.tar.zst
astro-ac6e2af73c4c02d3fb0ec90420479f3716593556.zip
Fix failing SSR test (#5067)
-rw-r--r--packages/astro/test/fixtures/ssr-api-route/astro.config.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/fixtures/ssr-api-route/astro.config.mjs b/packages/astro/test/fixtures/ssr-api-route/astro.config.mjs
index ef9763e01..ebed13047 100644
--- a/packages/astro/test/fixtures/ssr-api-route/astro.config.mjs
+++ b/packages/astro/test/fixtures/ssr-api-route/astro.config.mjs
@@ -4,5 +4,5 @@ import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({
output: 'server',
- adapter: node(),
+ adapter: node({ mode: 'standalone' }),
});