import { defineConfig } from '@vben/vite-config'; import ElementPlus from 'unplugin-element-plus/vite'; export default defineConfig(async () => { return { application: {}, vite: { plugins: [ ElementPlus({ format: 'esm', }), ], server: { proxy: { // Console API 代理 '/api': { changeOrigin: true, target: 'http://localhost:5231', ws: true, }, }, }, }, }; });