From def0ecbe2ac270a76a5da6f674b76a60270eaeb1 Mon Sep 17 00:00:00 2001 From: AliReZa Sabouri <7004080+alirezanet@users.noreply.github.com> Date: Fri, 10 Dec 2021 15:44:26 +0330 Subject: [PATCH] fix favicon path --- docs/.vuepress/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 56cc2708..970e73df 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -27,7 +27,7 @@ export default defineUserConfig({ base: '/Gridify/', head: [ - ['link', { rel: 'icon', href: '/favicon.ico', type: "image/x-icon" }], - ['link', { rel: 'shortcut icon', href: '/favicon.ico', type: "image/x-icon" }] + ['link', { rel: 'icon', href: 'favicon.ico', type: "image/x-icon" }], + ['link', { rel: 'shortcut icon', href: 'favicon.ico', type: "image/x-icon" }] ], })