From 625a669955f3d893ad01785ce3482f35f38beff3 Mon Sep 17 00:00:00 2001 From: Shineast Date: Tue, 7 Oct 2025 21:03:28 +0900 Subject: [PATCH] fix: resolve 404 error for site.webmanifest by correcting the manifest path --- fundamentals/code-quality/.vitepress/shared.mts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fundamentals/code-quality/.vitepress/shared.mts b/fundamentals/code-quality/.vitepress/shared.mts index d9d4c0f2..b633ef88 100644 --- a/fundamentals/code-quality/.vitepress/shared.mts +++ b/fundamentals/code-quality/.vitepress/shared.mts @@ -19,11 +19,11 @@ export const shared = defineConfig({ { rel: "icon", type: "image/x-icon", - href: "/code-quality/images/favicon.ico" + href: "images/favicon.ico" } ], - ["link", { rel: "manifest", href: "/images/site.webmanifest" }], - ["link", { rel: "apple-touch-icon", href: "/images/apple-touch-icon.png" }], + ["link", { rel: "manifest", href: "images/site.webmanifest" }], + ["link", { rel: "apple-touch-icon", href: "images/apple-touch-icon.png" }], [ "link", { @@ -86,7 +86,7 @@ export const shared = defineConfig({ }, themeConfig: { - logo: "/images/ff-symbol.svg", + logo: "images/ff-symbol.svg", editLink: { pattern: "https://github.com/toss/frontend-fundamentals/edit/main/fundamentals/code-quality/:path"