fix: remove leftover create-next-app default favicon.ico (v0.65.3)
app/favicon.ico was still the stock Next.js/Vercel triangle logo from the original scaffold, never swapped for Epicure's own icon. Next's file-based routing serves whatever's at app/favicon.ico as /favicon.ico independently of the icon.svg configured via metadata, so browsers preferring the .ico kept showing the placeholder no matter the cache state -- explains "clean computer, still see the default icon". No .ico regenerated (no image rasterizer available in this environment) -- the existing icon.svg is now the only favicon source, which every modern browser supports directly. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,11 @@
|
||||
|
||||
All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together.
|
||||
|
||||
## 0.65.3 — 2026-07-21 01:20
|
||||
|
||||
### Fixed
|
||||
- Removed a stale `app/favicon.ico` left over from the original create-next-app scaffold (the default Next.js/Vercel triangle logo) — Next's file-based routing served it as `/favicon.ico` regardless of the app icon configured via `icon.svg`, so some browsers showed the placeholder logo instead of Epicure's icon no matter what cache state you were in. The SVG icon is now the only favicon source.
|
||||
|
||||
## 0.65.2 — 2026-07-21 01:10
|
||||
|
||||
### Fixed
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
@@ -1,5 +1,5 @@
|
||||
// Mirrors CHANGELOG.md at the repo root — update both together.
|
||||
export const APP_VERSION = "0.65.2";
|
||||
export const APP_VERSION = "0.65.3";
|
||||
|
||||
export type ChangelogEntry = {
|
||||
version: string;
|
||||
@@ -11,6 +11,13 @@ export type ChangelogEntry = {
|
||||
};
|
||||
|
||||
export const CHANGELOG: ChangelogEntry[] = [
|
||||
{
|
||||
version: "0.65.3",
|
||||
date: "2026-07-21 01:20",
|
||||
fixed: [
|
||||
"Removed a stale app/favicon.ico left over from the original create-next-app scaffold (the default Next.js/Vercel triangle logo) — Next's file-based routing served it as /favicon.ico regardless of the app icon configured via icon.svg, so some browsers showed the placeholder logo instead of Epicure's icon no matter what cache state you were in. The SVG icon is now the only favicon source.",
|
||||
],
|
||||
},
|
||||
{
|
||||
version: "0.65.2",
|
||||
date: "2026-07-21 01:10",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@epicure/web",
|
||||
"version": "0.65.2",
|
||||
"version": "0.65.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "epicure",
|
||||
"version": "0.65.2",
|
||||
"version": "0.65.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "pnpm --filter web dev",
|
||||
|
||||
Reference in New Issue
Block a user