import { defineConfig, loadEnv } from 'vite' import vue from '@vitejs/plugin-vue' // https://vite.dev/config/ export default defineConfig(({ mode }) => { const env = loadEnv(mode, process.cwd(), '') const target = env.VITE_API_BASE_URL || 'http://localhost:6400' return { plugins: [vue()], server: { host: true, proxy: { '/api': { target: target, changeOrigin: true, }, '/ws': { target: target, ws: true, changeOrigin: true, } } } } })