webpack代理解决跨域问题

new WebpackDevServer(webpack(config), {
hot:hot,
inline: true,
compress: true,
//去掉真实ip的检测
disableHostCheck: true,
stats: {
chunks: false,
children: false,
colors: true
},
historyApiFallback: true,
proxy: {
'/api/**/*': {//接口开头关键字 *表示全部
target: 'http://ip地址',
//host: localPublicPath,
changeOrigin: true,
secure: false
}
}
}) 就okle
上一篇:Windows 10 配置Git 环境变量(还有:安装git后,鼠标右键没有“git bush here”)


下一篇:认识 Thymeleaf