From a0507a55d076deeed04b4f38da0c6cd8ee7c2782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=96?= Date: Thu, 15 Jun 2023 18:55:35 +0800 Subject: [PATCH] =?UTF-8?q?index.html=20=E7=BC=93=E5=AD=98=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit index.html 不应该被缓存,每次前端资源打包后相关资源是`/static/js/6.c78c6791.chunk.js` 存在哈希值的,index.html 被缓存后,由于index.html 中的引用路径没有发生变化,导致缓存无法及时更新。理想状态下,当前端资源发生变化的时候,在下一次页面刷新应当可以加载最新的资源。 --- middleware/frontend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/middleware/frontend.go b/middleware/frontend.go index f07d9b6..64f875d 100644 --- a/middleware/frontend.go +++ b/middleware/frontend.go @@ -66,7 +66,7 @@ func FrontendFileHandler() gin.HandlerFunc { return } - if path == "/service-worker.js" { + if path == "/service-worker.js" || path == "/index.html" { c.Header("Cache-Control", "public, no-cache") }