From 5b7ed255228fe7c2f06e292822364b3f5e492096 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Sat, 30 May 2026 00:35:46 -0700 Subject: [PATCH] Serve web manifest with manifest MIME type --- dist/default.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dist/default.conf b/dist/default.conf index d50b55c..ba33c17 100644 --- a/dist/default.conf +++ b/dist/default.conf @@ -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; }