本地Vue代理HTTPS接口
本地Vue代理HTTPS接口第一步:cnpm安装cnpm install momentcnpm install nice-try第二步:webpack.config.js中修改配置,配置成https请求devServer: {clientLogLevel: 'warning',https: true,hot: true},在代码中的修改位置:module.exports = merge(baseW
·
第一步
cnpm安装
cnpm install moment
cnpm install nice-try
第二步
webpack.config.js中修改配置,配置成https请求
devServer: {
clientLogLevel: 'warning',
https: true,
hot: true
},
在代码中的修改位置总览:
module.exports = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({sourceMap: config.dev.cssSourceMap})
},
// cheap-module-eval-source-map is faster for development
devtool: '#cheap-module-eval-source-map',
devServer: {
clientLogLevel: 'warning',
https: true,
hot: true
},
第三步
在config目录下或者config.js中修改vue代理方式
//使用代理
proxyTable: {
'/admin-web': {
target: 'https://127.0.0.1:8443',
changeOrigin: true,
secure: false,
pathRewrite: {
'^/admin-web': '/admin-web'
},
headers: {
Referer: 'https://127.0.0.1:8443'
}
}
},
更多推荐
已为社区贡献1条内容
所有评论(0)