diff --git a/nginx.conf b/nginx.conf index e889813..5cc8c2b 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,6 +3,10 @@ server { root /usr/share/nginx/html; index index.html; + location = /favicon.ico { + rewrite ^ /favicon.png permanent; + } + # Flutter Web SPA — all routes go to index.html location / { try_files $uri $uri/ /index.html;