From 062cfd38a030c5f4c6cc0072d1959212ee06cb43 Mon Sep 17 00:00:00 2001 From: Anton Medvedev Date: Tue, 5 Sep 2023 14:46:11 +0200 Subject: [PATCH] Fix favicon paths --- .vitepress/config.mts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 5547448299..ceea130b85 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -9,11 +9,11 @@ export default defineConfig({ titleTemplate: ':title | google/zx', description: 'A tool for writing better scripts', head: [ - ['link', {rel: 'apple-touch-icon', sizes: '180x180', href: '/img/favicons/apple-touch-icon.png'}], - ['link', {rel: 'icon', type: 'image/png', sizes: '32x32', href: '/img/favicons/favicon-32x32.png'}], - ['link', {rel: 'icon', type: 'image/png', sizes: '16x16', href: '/img/favicons/favicon-16x16.png'}], - ['link', {rel: 'mask-icon', href: '/img/favicons/safari-pinned-tab.svg', color: '#3a0839'}], - ['link', {rel: 'shortcut icon', href: '/img/favicons/favicon.ico'}], + ['link', {rel: 'apple-touch-icon', sizes: '180x180', href: '/zx/img/favicons/apple-touch-icon.png'}], + ['link', {rel: 'icon', type: 'image/png', sizes: '32x32', href: '/zx/img/favicons/favicon-32x32.png'}], + ['link', {rel: 'icon', type: 'image/png', sizes: '16x16', href: '/zx/img/favicons/favicon-16x16.png'}], + ['link', {rel: 'mask-icon', href: '/zx/img/favicons/safari-pinned-tab.svg', color: '#3a0839'}], + ['link', {rel: 'shortcut icon', href: '/zx/img/favicons/favicon.ico'}], ], themeConfig: { logo: '/img/logo.svg',