import { defineConfig } from '@vben/vite-config'; export default defineConfig(async () => { return { application: {}, vite: { server: { proxy: { '/manager': { changeOrigin: true, target: 'https://wx.hzliuzhi.com:4433', ws: true, }, }, }, }, }; });