sw-precache-config.js内容如下,它包含基本设置以及我使用npm run sw添加到生成的service-worker.js的文件。所有文件位置都将进入service-worker.js文件。
module.exports = {
navigateFallback: '/index.html',
stripPrefix: 'public',
root: 'public/',
minify: true,
staticFileGlobs: [
'index.html',
'public/js/customjs/**.js',
'public/js/libraries/**.js'
]
};
如果需要任何其他细节,请告诉我。