workbox webpack plugin
Posted 飞翔的熊blabla
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了workbox webpack plugin相关的知识,希望对你有一定的参考价值。
https://developers.google.com/web/tools/workbox/modules/workbox-webpack-plugin
InjectManifest Plugin
You can add the InjectManifest
plugin to your webpack config like so:
// Inside of webpack.config.js:
const InjectManifest = require('workbox-webpack-plugin');
module.exports =
// Other webpack config...
plugins: [
// Other plugins...
new InjectManifest(
swSrc: './src/sw.js',
)
]
;
以上是关于workbox webpack plugin的主要内容,如果未能解决你的问题,请参考以下文章
workbox-webpack-plugin 的 InjectManifest 仅适用于 `devtoolModuleFilenameTemplate: 'file:///[absolute-reso
如何为生成的 service worker 禁用 workbox-webpack-plugin 的警告
React如何通过Webpack优雅的接入serviceWorker的成熟方案workBox && Google Analytics