0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/examples/ssr/astro.config.mjs

19 lines
260 B
JavaScript
Raw Normal View History

// @ts-check
export default defineConfig({
renderers: ['@astrojs/renderer-svelte'],
vite: {
server: {
cors: {
credentials: true
},
proxy: {
'/api': {
target: 'http://127.0.0.1:8085',
changeOrigin: true,
}
2022-02-14 12:50:16 -05:00
},
},
},
});