From 8c51c7a8a6f16aa7ec39fd8678931ccac88ba4a3 Mon Sep 17 00:00:00 2001 From: Reece Date: Thu, 25 Sep 2025 16:36:06 +0100 Subject: [PATCH] safe and working --- docker/frontend/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/frontend/nginx.conf b/docker/frontend/nginx.conf index 38f4699e7..ffe913738 100644 --- a/docker/frontend/nginx.conf +++ b/docker/frontend/nginx.conf @@ -6,6 +6,11 @@ http { include /etc/nginx/mime.types; default_type application/octet-stream; + # Add .mjs MIME type mapping + types { + text/javascript mjs; + } + # Gzip compression gzip on; gzip_vary on;