削除するキャッシュを増やす

This commit is contained in:
kakkokari-gtyih 2025-09-06 14:31:24 +09:00
parent 4aeb626943
commit 62b8aa1b31
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ export class ApiServerService {
fastify.all('/clear-browser-cache', (request, reply) => {
if (['GET', 'POST'].includes(request.method)) {
reply.header('Clear-Site-Data', '"cache", "executionContexts"');
reply.header('Clear-Site-Data', '"cache", "prefetchCache", "prerenderCache", "executionContexts"');
reply.code(204);
reply.send();
} else {