vuecli设置webapp缓存(appcache)(manifest)
安装插件
npm i -D appcache-manifest
修改package.json
{
...
"scripts": {
...
//新增
"cache": "cd ./dist && appcache-manifest './**/**/**/**/**.**' --network-star -o ./index.appcache && cd ../",
...
},
...
}
运行
npm run cache