Spaces:
Running
Running
File size: 364 Bytes
1a56106 01f62f3 da515b9 1a56106 da515b9 af53b62 1a56106 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import Icons from 'unplugin-icons/vite'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
svelte(),
Icons({ compiler: 'svelte', defaultStyle: 'vertical-align: sub;' }),
],
server: {
proxy: { '/api': 'http://127.0.0.1:8000' },
},
})
|