import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' export default defineConfig({ plugins: [vue()], server: { port: 3000, host: '0.0.0.0', proxy: { '/api': { target: 'http://localhost:8004', changeOrigin: true, }, '/ws': { target: 'http://localhost:8004', ws: true, changeOrigin: true, }, '/health': { target: 'http://localhost:8004', changeOrigin: true, }, }, }, })