diff options
Diffstat (limited to 'examples/ssr/astro.config.mjs')
-rw-r--r-- | examples/ssr/astro.config.mjs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/ssr/astro.config.mjs b/examples/ssr/astro.config.mjs index f6aba20ce..448d5829d 100644 --- a/examples/ssr/astro.config.mjs +++ b/examples/ssr/astro.config.mjs @@ -6,17 +6,4 @@ import nodejs from '@astrojs/node'; export default defineConfig({ adapter: nodejs(), integrations: [svelte()], - vite: { - server: { - cors: { - credentials: true, - }, - proxy: { - '/api': { - target: 'http://127.0.0.1:8085', - changeOrigin: true, - }, - }, - }, - }, }); |