Fix node asset cache busting

This commit is contained in:
cyph3rasi
2026-03-07 20:32:30 -08:00
parent 588307d21e
commit 2acebc15a5
6 changed files with 45 additions and 6 deletions
+3 -1
View File
@@ -48,7 +48,9 @@ export async function GET() {
status: 200,
headers: {
'Content-Type': mimeType,
'Cache-Control': 'public, max-age=3600, stale-while-revalidate=86400',
'Cache-Control': 'no-store, max-age=0',
Pragma: 'no-cache',
Expires: '0',
'Content-Length': buffer.length.toString(),
},
});