Skip to content

Commit

Permalink
docs: Concat absolute path with base
Browse files Browse the repository at this point in the history
  • Loading branch information
rkunev committed Mar 19, 2024
1 parent 1a9c0e1 commit cad5522
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: '/logo.png' }],
['meta', { property: 'og:image', content: '/logo.png' }],
['link', { rel: 'image/png', href: '/vue-color-picker/logo.png' }],
['meta', { property: 'og:image', content: '/vue-color-picker/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: '/logo.png',
logo: '/vue-color-picker/logo.png',

nav: [
{ text: 'Guide', link: '/guide/' },
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ layout: home
hero:
name: 'Radial Color Picker'
tagline: 'Minimalistic color picker with a focus on size, accessibility and performance.'
image: /logo.png
image: /vue-color-picker/logo.png
actions:
- theme: brand
text: Get Started
Expand Down

0 comments on commit cad5522

Please sign in to comment.