fix: remove license files from service worker (#1875)
This commit is contained in:
parent
620dfafd09
commit
04b56f5dc5
|
@ -41,7 +41,7 @@ const JSON_TEMPLATE = {
|
||||||
dest: 'client/$1'
|
dest: 'client/$1'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: '^/client/.*\\.(js|css|map|LICENSE)$',
|
src: '^/client/.*\\.(js|css|map|LICENSE|txt)$',
|
||||||
headers: {
|
headers: {
|
||||||
'cache-control': 'public,max-age=31536000,immutable'
|
'cache-control': 'public,max-age=31536000,immutable'
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ const assets = __assets__
|
||||||
const webpackAssets = __shell__
|
const webpackAssets = __shell__
|
||||||
.filter(filename => !filename.endsWith('.map')) // don't bother with sourcemaps
|
.filter(filename => !filename.endsWith('.map')) // don't bother with sourcemaps
|
||||||
.filter(filename => !filename.includes('tesseract-core.wasm')) // cache on-demand
|
.filter(filename => !filename.includes('tesseract-core.wasm')) // cache on-demand
|
||||||
.filter(filename => !filename.endsWith('.LICENSE')) // don't bother with license files
|
.filter(filename => !filename.includes('LICENSE')) // don't bother with license files
|
||||||
|
|
||||||
// `routes` is an array of `{ pattern: RegExp }` objects that
|
// `routes` is an array of `{ pattern: RegExp }` objects that
|
||||||
// match the pages in your src
|
// match the pages in your src
|
||||||
|
|
Loading…
Reference in New Issue