mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 07:28:37 +08:00
fix(pwa): prevent stale service worker caching (#498)
This commit is contained in:
+18
-2
@@ -35,6 +35,23 @@ http {
|
|||||||
try_files $uri $uri/ /index.html;
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location = /service-worker.js {
|
||||||
|
# Service Worker 必须保持稳定 URL 并每次重新验证,避免前端更新后继续注册旧版本。
|
||||||
|
expires off;
|
||||||
|
add_header Cache-Control "no-cache, must-revalidate";
|
||||||
|
root html;
|
||||||
|
try_files $uri =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
location = /manifest.webmanifest {
|
||||||
|
# Web App Manifest 参与 PWA 安装与资源发现,不能跟普通静态资源一起长缓存。
|
||||||
|
expires off;
|
||||||
|
default_type application/manifest+json;
|
||||||
|
add_header Cache-Control "no-cache, must-revalidate";
|
||||||
|
root html;
|
||||||
|
try_files $uri =404;
|
||||||
|
}
|
||||||
|
|
||||||
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
|
||||||
# 静态资源
|
# 静态资源
|
||||||
expires 1y;
|
expires 1y;
|
||||||
@@ -44,8 +61,7 @@ http {
|
|||||||
|
|
||||||
location /assets {
|
location /assets {
|
||||||
# 静态资源
|
# 静态资源
|
||||||
expires 1y;
|
add_header Cache-Control "public, max-age=31536000, immutable";
|
||||||
add_header Cache-Control "public";
|
|
||||||
root html;
|
root html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user