31 lines
766 B
JavaScript
31 lines
766 B
JavaScript
module.exports = {
|
|
publicPath: './',
|
|
productionSourceMap: false,
|
|
lintOnSave: false,
|
|
devServer: {
|
|
//自己公司项目自己配置哈
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://ceshi93.yxymk.com/',
|
|
changeOrigin: true,
|
|
// pathRewrite: {
|
|
// '^/api': ''
|
|
// }
|
|
},
|
|
'/upload': {
|
|
target: 'https://ceshi93.yxymk.com/',
|
|
changeOrigin: true,
|
|
// pathRewrite: {
|
|
// '^/api': ''
|
|
// }
|
|
},
|
|
'/US.json': {
|
|
target: 'https://ceshi93.yxymk.com/',
|
|
changeOrigin: true,
|
|
// pathRewrite: {
|
|
// '^/api': ''
|
|
// }
|
|
}
|
|
}
|
|
}
|
|
} |