diff options
author | 2022-10-13 22:47:37 +0800 | |
---|---|---|
committer | 2022-10-13 10:47:37 -0400 | |
commit | ac6e2af73c4c02d3fb0ec90420479f3716593556 (patch) | |
tree | 94c3142168ba8b9923cae10dd4b0177c222a3920 | |
parent | 575bf9205e7b5875c6b95d49339ff448f59eaad4 (diff) | |
download | astro-ac6e2af73c4c02d3fb0ec90420479f3716593556.tar.gz astro-ac6e2af73c4c02d3fb0ec90420479f3716593556.tar.zst astro-ac6e2af73c4c02d3fb0ec90420479f3716593556.zip |
Fix failing SSR test (#5067)
Diffstat (limited to '')
-rw-r--r-- | packages/astro/test/fixtures/ssr-api-route/astro.config.mjs | 2 |
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' }), }); |