import { fileURLToPath, URL } from 'node:url' import path from 'node:path' 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)), // 兜底:若 element-plus exports 解析失败则走 fallback 'element-plus': path.resolve( fileURLToPath(new URL('node_modules/element-plus/es/index.mjs', import.meta.url)) ) } }, server: { host: '0.0.0.0', port: 3000, // 允许任意 Host 头访问(HMR WebSocket 在远程访问时需要) allowedHosts: true, proxy: { '/api': { target: 'http://localhost:8008', changeOrigin: true } } } })