Spaces:
Running
Running
File size: 484 Bytes
1a56106 01f62f3 da515b9 1a56106 da515b9 af53b62 a180fd2 af53b62 1a56106 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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',
'/ws': {
target: 'ws://127.0.0.1:8000',
ws: true,
changeOrigin: true,
},
},
},
})
|