summaryrefslogtreecommitdiff
path: root/examples/ssr/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-03-29 08:18:11 -0400
committerGravatar GitHub <noreply@github.com> 2022-03-29 08:18:11 -0400
commitecbcc8c42cab4b043821bbc31574397fdbf9d481 (patch)
tree206c81382bfef18d8b6a390b24f6a8185f827c0e /examples/ssr/astro.config.mjs
parentf89dc5c04afbcc63636d2f63cdf7a92ebd80acc4 (diff)
downloadastro-ecbcc8c42cab4b043821bbc31574397fdbf9d481.tar.gz
astro-ecbcc8c42cab4b043821bbc31574397fdbf9d481.tar.zst
astro-ecbcc8c42cab4b043821bbc31574397fdbf9d481.zip
Make it deployable to Netlify (#2931)
Diffstat (limited to 'examples/ssr/astro.config.mjs')
-rw-r--r--examples/ssr/astro.config.mjs13
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,
- },
- },
- },
- },
});