fix: wrong cache type (#688) [skip ci]

Co-authored-by: Lucas Genzelis <lucas@foxbox.com>
This commit is contained in:
lgenzelis 2020-07-16 23:24:10 -03:00 committed by Dylan Vann
parent c23204f521
commit 94e2256da2
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ const priority = {
high: 'high', high: 'high',
} as const } as const
type Cache = 'low' | 'normal' | 'high' type Cache = 'immutable' | 'web' | 'cacheOnly'
const cacheControl = { const cacheControl = {
// Ignore headers, use uri as cache key, fetch only if not in cache. // Ignore headers, use uri as cache key, fetch only if not in cache.