astro/examples/ssr/astro.config.mjs
2022-02-14 17:50:16 +00:00

12 lines
210 B
JavaScript

// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
renderers: ['@astrojs/renderer-svelte'],
vite: {
server: {
proxy: {
'/api': 'http://localhost:8085',
},
},
},
});