My NGINX server doesn't use my *.less file
- by Nicolas
On my NGINX server, I use a LESS file instead of a CSS file.
But my web page is displayed without any style.
I tried on Apache and it works great.
So I tried to add the less mime-type to nginx in the file /etc/nginx/mime.types :
types {
text/css css less;
And
types {
text/less less;
None of these two try work.
Does anyone knows how to use LESS files with NGINX ?