import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' export default defineConfig({ plugins: [vue()], server: { host: '0.0.0.0', port: 5173, allowedHosts: ['all', 'onu.dhdx.fun'], proxy: { '/api': { target: process.env.VITE_API_PROXY_TARGET || 'http://localhost:8001', changeOrigin: true }, '/ws': { target: (process.env.VITE_API_PROXY_TARGET || 'http://localhost:8001').replace('http', 'ws'), ws: true } } } })