0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/examples/ssr/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
175 B
JavaScript
Raw Normal View History

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