summaryrefslogtreecommitdiff
path: root/examples/ssr/astro.config.mjs
blob: c96372f66f4456882fdd3a1f8497705f270cae51 (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',
			},
		},
	},
});