From 9aad82ad2211540069c7ceac8e3b70e88be02f2a Mon Sep 17 00:00:00 2001 From: "Anaz S. Aji" Date: Sun, 14 Jun 2026 21:56:53 +0700 Subject: [PATCH] fix: remove base prefix from head assets (VitePress prepends base automatically) --- docs/.vitepress/config.mts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index c117c03..3f4037f 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -6,8 +6,8 @@ export default defineConfig({ base: '/docs/cora/', head: [ - ['link', { rel: 'icon', type: 'image/svg+xml', href: '/docs/cora/favicon.svg' }], - ['link', { rel: 'alternate icon', type: 'image/png', href: '/docs/cora/favicon.png' }], + ['link', { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }], + ['link', { rel: 'alternate icon', type: 'image/png', href: '/favicon.png' }], ['meta', { name: 'theme-color', content: '#6366f1' }], ['meta', { property: 'og:type', content: 'website' }], ['meta', { property: 'og:title', content: 'Cora — AI Code Review CLI' }], @@ -17,7 +17,7 @@ export default defineConfig({ ], themeConfig: { - logo: '/docs/cora/logo.svg', + logo: '/logo.svg', nav: [ { text: 'Codecora', link: 'https://codecora.dev' },