From 5a4279c689f114359e84654ab9218ebcfc70b289 Mon Sep 17 00:00:00 2001 From: Zak Timson Date: Tue, 3 May 2022 16:33:43 +0000 Subject: [PATCH] Update docker/nginx.conf --- docker/nginx.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docker/nginx.conf b/docker/nginx.conf index 94c2533..47a37ca 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -26,6 +26,14 @@ http { location / { try_files $uri$args $uri$args/ /index.html; + } + + location ~ \.css { + add_header Content-Type text/css; + } + + location ~ \.js { + add_header Content-Type application/x-javascript; } } }