summaryrefslogtreecommitdiff
path: root/examples/ssr/astro.config.mjs
blob: 7c986b97d8402fb544e0f6f1e767f7846b854da0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// @ts-check

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