forked from cybrespace/pinafore
perf: avoid caching robots.txt in service worker (#820)
This commit is contained in:
parent
77b84d44f4
commit
beb4d6e119
|
@ -18,6 +18,7 @@ const assets = __assets__
|
|||
.map(file => file.startsWith('/') ? file : `/${file}`)
|
||||
.filter(filename => !filename.startsWith('/apple-icon'))
|
||||
.filter(filename => !filename.endsWith('.map'))
|
||||
.filter(filename => filename !== '/robots.txt')
|
||||
|
||||
// `shell` is an array of all the files generated by webpack
|
||||
// also contains '/index.html' for some reason
|
||||
|
|
Loading…
Reference in New Issue