配置代理方法
module.exports = {
// publicpath:"./",
publicPath: './',
devServer : {
open : true ,
contentBase : 'src' ,
port : 8085 ,//端口号
hot : true ,
proxy : {
"/api" : {
target :'http://192.168.1.6:8000',
// target :'http://103.100.208.203:9000',
changeOrigin : true
} ,
}
} ,
}