From 180ca8a8e7e86c6db6c6b6a4b154bb6a42a17bb0 Mon Sep 17 00:00:00 2001 From: Immerse Date: Sat, 1 Jun 2024 18:55:57 +0800 Subject: [PATCH] fix(client): website favicon path error (#709) --- apps/client/nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/nuxt.config.ts b/apps/client/nuxt.config.ts index a31b805a5..7cc7b5262 100644 --- a/apps/client/nuxt.config.ts +++ b/apps/client/nuxt.config.ts @@ -29,7 +29,7 @@ export default defineNuxtConfig({ app: { head: { title: "Earthworm", - link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.png" }], + link: [{ rel: "icon", type: "image/x-icon", href: "/logo.png" }], script: appScripts, }, },