We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073a98e commit 25ed0e4Copy full SHA for 25ed0e4
src/run/handlers/cache.cts
@@ -338,7 +338,11 @@ export class NetlifyCacheHandler implements CacheHandler {
338
339
if (cacheEntry.value?.kind === 'FETCH') {
340
cacheTags = [...tags, ...softTags]
341
- } else if (cacheEntry.value?.kind === 'PAGE' || cacheEntry.value?.kind === 'ROUTE') {
+ } else if (
342
+ cacheEntry.value?.kind === 'PAGE' ||
343
+ cacheEntry.value?.kind === 'APP_PAGE' ||
344
+ cacheEntry.value?.kind === 'ROUTE'
345
+ ) {
346
cacheTags = (cacheEntry.value.headers?.[NEXT_CACHE_TAGS_HEADER] as string)?.split(',') || []
347
} else {
348
return false
0 commit comments