33 lines
980 B
TypeScript
33 lines
980 B
TypeScript
import { defineApplicationConfig } from '@vben/vite-config';
|
|
|
|
export default defineApplicationConfig({
|
|
overrides: {
|
|
optimizeDeps: {
|
|
include: [
|
|
'echarts/core',
|
|
'echarts/charts',
|
|
'echarts/components',
|
|
'echarts/renderers',
|
|
'qrcode',
|
|
'@iconify/iconify',
|
|
'ant-design-vue/es/locale/zh_CN',
|
|
'ant-design-vue/es/locale/en_US',
|
|
],
|
|
},
|
|
server: {
|
|
port: 7000,
|
|
proxy: {
|
|
'/erp-api': {
|
|
// target: 'http://localhost:8088',
|
|
target: 'https://erp.wansen.cloud',
|
|
// https://erp.wansen.cloud
|
|
changeOrigin: true,
|
|
ws: true,
|
|
// rewrite: (path) => path.replace(/^\/api/, ''),
|
|
// only https
|
|
}
|
|
},
|
|
},
|
|
},
|
|
});
|