vue-manage-system/vue.config.js

19 lines
502 B
JavaScript

module.exports = {
baseUrl: './',
productionSourceMap: false,
devServer: {
proxy: {
'/api':{
target:'http://jsonplaceholder.typicode.com',
changeOrigin:true,
pathRewrite:{
'/api':''
}
},
'/ms':{
target: 'https://www.easy-mock.com/mock/592501a391470c0ac1fab128',
changeOrigin: true
}
}
}
}