http协议请求升级https协议请求
npm install http-upgrade-plugin --save dev
HttpUpgrade({template:"index.html", isUpgrade:true}) // template模版资源名称 isUpgrade是否将http协议升级成https
const HttpUpgrade = require('http-upgrade-plugin')
...
plugins: [
...
new HttpUpgrade({template:"index.html", isUpgrade:process.env.XXX==='production'})
...
]
...
MIT