41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
module.exports = {
|
|
// publicPath: process.env.NODE_ENV === 'production' ? '/onlyofficeui/' : '/',
|
|
publicPath: '/',
|
|
outputDir:"onlyofficeui", //设置打包后的项目目录名称
|
|
css: {
|
|
loaderOptions: {
|
|
less: {
|
|
// 自定义主题样式
|
|
// modifyVars: {
|
|
// 'primary-color': '#41B883',
|
|
// 'link-color': '#41B883',
|
|
// 'border-radius-base': '2px'
|
|
// }
|
|
// 解决问题主要需要打开这个
|
|
javascriptEnabled: true
|
|
}
|
|
}
|
|
},
|
|
devServer: {
|
|
port: 8083,
|
|
proxy: {
|
|
/* '/api': {
|
|
target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
|
|
ws: false,
|
|
changeOrigin: true,
|
|
pathRewrite: {
|
|
'/laws-sinotruk': '' //默认所有请求都加了jero-boot前缀,需要去掉
|
|
}
|
|
}, */
|
|
'/laws-sinotruk': {
|
|
target: 'http://localhost:8184',
|
|
ws: false,
|
|
changeOrigin: true,
|
|
pathRewrite: {
|
|
// '/laws-sinotruk': '' // 默认所有请求都加了jero-boot前缀,需要去掉
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|