From 5af9071fde2728a97078333858ca64af144da0c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Eduardo=20Garc=C3=ADa=20M=C3=A1rquez?= Date: Thu, 8 Jan 2026 00:02:19 -0500 Subject: [PATCH] fix(frontend): add favicon and update references - Create favicon.svg with blue "S" logo matching app branding - Update index.html to reference favicon.svg instead of favicon.ico - Add favicon.svg to angular.json assets configuration Fixes DEF-004: Browser was showing 404 error for missing favicon.ico in the console. --- src/frontend/angular.json | 6 ++++-- src/frontend/src/favicon.svg | 4 ++++ src/frontend/src/index.html | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 src/frontend/src/favicon.svg diff --git a/src/frontend/angular.json b/src/frontend/angular.json index e33fef5..be61b80 100644 --- a/src/frontend/angular.json +++ b/src/frontend/angular.json @@ -26,7 +26,8 @@ "tsConfig": "tsconfig.app.json", "inlineStyleLanguage": "scss", "assets": [ - { "glob": "**/*", "input": "src/assets", "output": "/assets" } + { "glob": "**/*", "input": "src/assets", "output": "/assets" }, + "src/favicon.svg" ], "styles": [ "@angular/material/prebuilt-themes/indigo-pink.css", @@ -71,7 +72,8 @@ "tsConfig": "tsconfig.spec.json", "inlineStyleLanguage": "scss", "assets": [ - { "glob": "**/*", "input": "src/assets", "output": "/assets" } + { "glob": "**/*", "input": "src/assets", "output": "/assets" }, + "src/favicon.svg" ], "styles": ["src/styles/main.scss"], "scripts": [] diff --git a/src/frontend/src/favicon.svg b/src/frontend/src/favicon.svg new file mode 100644 index 0000000..781ae36 --- /dev/null +++ b/src/frontend/src/favicon.svg @@ -0,0 +1,4 @@ + + + S + diff --git a/src/frontend/src/index.html b/src/frontend/src/index.html index b29ec74..970e401 100644 --- a/src/frontend/src/index.html +++ b/src/frontend/src/index.html @@ -6,7 +6,7 @@ - +