From a63a3f70cfd82ea52a20168d91fe12de61b53327 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Wed, 17 Apr 2024 16:32:13 +0300 Subject: [PATCH] fix(nginx): only mjs needs mimetype --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 891041d..3e8d95a 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,7 +1,7 @@ # Add .mjs as a file extension for javascript include mime.types; types { - text/javascript js mjs; + text/javascript mjs; } #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;