webpack: don't precache .DS_Store in sw.js (#64)
This commit is contained in:
parent
f3cb9ae3f9
commit
a779976038
1 changed files with 7 additions and 2 deletions
|
|
@ -48,6 +48,11 @@ module.exports = [{
|
|||
}),
|
||||
...(process.env.NODE_ENV === 'production' ? [
|
||||
new WorkboxPlugin.GenerateSW({
|
||||
exclude: [
|
||||
/\.map$/,
|
||||
/^manifest.*\.js$/,
|
||||
/.*?\.DS_Store$/,
|
||||
],
|
||||
// these options encourage the ServiceWorkers to get in there fast
|
||||
// and not allow any straggling "old" SWs to hang around
|
||||
swDest: path.join(__dirname, "dist", 'sw.js'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue