From 6b8fe0ec5353b8b318ac8929efe7aa8adc579869 Mon Sep 17 00:00:00 2001 From: Gustavo Gonzalez Date: Mon, 13 Apr 2026 11:57:48 -0400 Subject: [PATCH] fix(docs): wire favicon.svg via vocs iconUrl so browser tabs show the Taiko logo The Taiko favicon already existed in docs/public/ but was never referenced in vocs.config.ts, so browsers fell back to the default icon. Setting iconUrl points vocs at the existing asset. Co-Authored-By: Claude Opus 4.6 (1M context) --- vocs.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vocs.config.ts b/vocs.config.ts index 2382a25..ab51ecd 100644 --- a/vocs.config.ts +++ b/vocs.config.ts @@ -7,6 +7,7 @@ export default defineConfig({ description: 'Documentation for Taiko, a based rollup on Ethereum', logoUrl: { dark: '/logo-dark.svg', light: '/logo-light.svg' }, + iconUrl: '/favicon.svg', theme: { accentColor: { light: '#e81899', dark: '#fc5cb5' },