2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
12 lines
175 B
JavaScript
12 lines
175 B
JavaScript
// @ts-check
|
|
|
|
export default defineConfig({
|
|
renderers: ['@astrojs/renderer-svelte'],
|
|
vite: {
|
|
server: {
|
|
proxy: {
|
|
'/api': 'http://localhost:8085',
|
|
},
|
|
},
|
|
},
|
|
});
|