Vue Cli开启本地开发https支持

in 前端 with 0 comment

修改vue.config.js 这样就开启了locahost的https支持

module.exports = {
  devServer: {
    https:true
  }
}
Comments are closed.