vue2.0中
项目工程根目录下,找到文件 vue.config.js。设置 module.exports.devServer.https: true
项目工程根目录下,找到文件 vue.config.js。设置 module.exports.devServer.https: true
module.exports = {
productionSourceMap: false,
configureWebpack: {
devtool: 'source-map'
},
// 它支持webPack-dev-server的所有选项
devServer: {
https: true, // https:{type:Boolean}
open: true, //配置自动启动浏览器
proxy: {
}
}
访问:https://localhost:8080
标签:exports,vue,开启,module,devServer,https,true From: https://www.cnblogs.com/zhangshiwen/p/17325377.html