mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
13 lines
206 B
JavaScript
13 lines
206 B
JavaScript
|
// @ts-check
|
||
|
|
||
|
export default /** @type {import('astro').AstroUserConfig} */ ({
|
||
|
renderers: ['@astrojs/renderer-svelte'],
|
||
|
vite: {
|
||
|
server: {
|
||
|
proxy: {
|
||
|
'/api': 'http://localhost:8085'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|