Serve web manifest with manifest MIME type

This commit is contained in:
2026-05-30 00:35:46 -07:00
parent 39014eee18
commit 5b7ed25522

5
dist/default.conf vendored
View File

@@ -17,6 +17,11 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location = /manifest.webmanifest {
default_type application/manifest+json;
try_files $uri =404;
}
location / {
try_files $uri $uri/ /index.html;
}