astro/examples/ssr/astro.config.mjs

13 lines
175 B
JavaScript
Raw Normal View History

// @ts-check
export default defineConfig({
renderers: ['@astrojs/renderer-svelte'],
vite: {
server: {
proxy: {
2022-02-14 17:50:16 +00:00
'/api': 'http://localhost:8085',
},
},
},
});