Skip to content

Commit

Permalink
docs: Use absolute path for logo
Browse files Browse the repository at this point in the history
  • Loading branch information
rkunev committed Mar 19, 2024
1 parent 4abcaf7 commit 1a9c0e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export default defineConfig({
title: 'Radial Color Picker',
description: 'Minimalistic color picker with a focus on size, accessibility and performance.',
head: [
['link', { rel: 'image/png', href: '/vue-color-picker/img/logo.png' }],
['meta', { property: 'og:image', content: '/vue-color-picker/img/logo.png' }],
['link', { rel: 'image/png', href: '/logo.png' }],
['meta', { property: 'og:image', content: '/logo.png' }],
['meta', { property: 'og:image:height', content: '640' }],
['meta', { property: 'og:image:width', content: '640' }],
['meta', { property: 'og:locale', content: 'en' }],
Expand All @@ -24,7 +24,7 @@ export default defineConfig({
],

themeConfig: {
logo: '/vue-color-picker/img/logo.png',
logo: '/logo.png',

nav: [
{ text: 'Guide', link: '/guide/' },
Expand Down

0 comments on commit 1a9c0e1

Please sign in to comment.