Make reports installable as a PWA

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-11 11:27:01 +00:00
parent 803332e6a3
commit e9f1d4fdea
8 changed files with 6294 additions and 2 deletions

View file

@ -1,4 +1,20 @@
server {
location = /reports/manifest.webmanifest {
default_type application/manifest+json;
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location = /reports/sw.js {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location = /reports/registerSW.js {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
listen 80;
server_name localhost;
root /usr/share/nginx/html;