Merge pull request #4940 from emanuelschuetze/serviceWorkerURL

Exclude urls /rest and /apps from service worker caching.
This commit is contained in:
Emanuel Schütze 2019-08-22 14:59:16 +02:00 committed by GitHub
commit a597764917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -25,5 +25,16 @@
]
}
}
],
"dataGroups": [
{
"name": "api",
"urls": ["/rest/*", "/apps/*"],
"cacheConfig": {
"maxSize": 0,
"maxAge": "0u",
"strategy": "freshness"
}
}
]
}