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; } } }