import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue()], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { host: '0.0.0.0', port: 3000, // 允许任意 Host 头访问(HMR WebSocket 在远程访问时需要) allowedHosts: true, proxy: { '/api': { target: 'http://localhost:8008', changeOrigin: true } } } })