📍 Description
When running the project locally using npm run dev, the browser console shows a 404 error for /favicon.ico.
The browser automatically attempts to load a favicon from the root directory, but the file does not exist in the public/ folder, resulting in a failed request.
🧪 Steps to Reproduce
- Clone the repository.
- Navigate to the project folder:
- Install dependencies:
- Start the development server:
- Open http://localhost:5173 in the browser.
- Open DevTools → Console.
Expected Behavior
No 404 errors in the browser console.
A favicon should load successfully from the public/ directory.
The browser tab should display the project icon.
Suggested Fix
Add a favicon.ico file inside the public/ folder. OR
Update index.html to correctly reference an existing icon file.
Screenshot

📍 Description
When running the project locally using
npm run dev, the browser console shows a 404 error for/favicon.ico.The browser automatically attempts to load a favicon from the root directory, but the file does not exist in the
public/folder, resulting in a failed request.🧪 Steps to Reproduce
cd CITY-STYLEExpected Behavior
No 404 errors in the browser console.
A favicon should load successfully from the public/ directory.
The browser tab should display the project icon.
Suggested Fix
Add a favicon.ico file inside the public/ folder. OR
Update index.html to correctly reference an existing icon file.
Screenshot