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: true, // 允许局域网(手机)访问 port: 5173, allowedHosts: true, proxy: { '/api': { target: 'http://localhost:5280', changeOrigin: true, }, }, }, build: { target: 'es2018', // 兼容微信 X5 内核 outDir: 'dist', }, })