Skip to content

Commit

Permalink
Fix favicon paths
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Sep 5, 2023
1 parent 375d6fc commit 062cfd3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 062cfd3

Please sign in to comment.