From 74a4f4190290cc5cf0d069174543fb03f99ae538 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Thu, 18 Jun 2026 14:52:57 -0500 Subject: [PATCH] fix: redirect favicon.ico to favicon.png in nginx Co-Authored-By: Claude Sonnet 4.6 --- nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) 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;