fix: do not cache license files in service worker (#1575)

pull/1581/head
Nolan Lawson 2019-10-15 06:52:27 -07:00 zatwierdzone przez GitHub
rodzic afb06d988e
commit ac4d512363
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -41,7 +41,7 @@ const JSON_TEMPLATE = {
dest: 'client/$1'
},
{
src: '^/client/.*\\.(js|css|map)$',
src: '^/client/.*\\.(js|css|map|LICENSE)$',
headers: {
'cache-control': 'public,max-age=31536000,immutable'
}

Wyświetl plik

@ -26,6 +26,7 @@ const assets = __assets__
const webpackAssets = __shell__
.filter(filename => !filename.endsWith('.map')) // don't bother with sourcemaps
.filter(filename => !filename.includes('tesseract-core.wasm')) // cache on-demand
.filter(filename => !filename.endsWith('.LICENSE')) // don't bother with license files
// `routes` is an array of `{ pattern: RegExp }` objects that
// match the pages in your src