fix: wrong cache type (#688) [skip ci]
Co-authored-by: Lucas Genzelis <lucas@foxbox.com>
This commit is contained in:
parent
c23204f521
commit
94e2256da2
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue