vue写的前端框架设置成https前缀
1。cnpm安装依赖sudo cnpm install momentsudo cnpm install nice-try2。在webpack.config.js中修改配置,配置成https请求devServer: {contentBase: path.join(__dirname, 'dist'),publicPath: '/',...
·
1。cnpm安装依赖
sudo cnpm install moment
sudo cnpm install nice-try
2。在webpack.config.js中修改配置,配置成https请求
devServer: {
contentBase: path.join(__dirname, 'dist'),
publicPath: '/',
compress: true,
disableHostCheck: true,
historyApiFallback: true,
**https: true,
port: 443**
},
3。在src中的config.js中设置请求的基础地址即可
更多推荐
已为社区贡献2条内容
所有评论(0)