diff options
Diffstat (limited to 'examples/ssr/astro.config.mjs')
-rw-r--r-- | examples/ssr/astro.config.mjs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/ssr/astro.config.mjs b/examples/ssr/astro.config.mjs new file mode 100644 index 000000000..7c986b97d --- /dev/null +++ b/examples/ssr/astro.config.mjs @@ -0,0 +1,12 @@ +// @ts-check + +export default /** @type {import('astro').AstroUserConfig} */ ({ + renderers: ['@astrojs/renderer-svelte'], + vite: { + server: { + proxy: { + '/api': 'http://localhost:8085' + } + } + } +}); |