Skip to content

Commit 4abcaf7

Browse files
committed
docs: Fix img path
1 parent 7c5a46b commit 4abcaf7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/.vitepress/config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export default defineConfig({
55
title: 'Radial Color Picker',
66
description: 'Minimalistic color picker with a focus on size, accessibility and performance.',
77
head: [
8-
['link', { rel: 'image/png', href: './.vitepress/img/logo.png' }],
9-
['meta', { property: 'og:image', content: './.vitepress/img/logo.png' }],
8+
['link', { rel: 'image/png', href: '/vue-color-picker/img/logo.png' }],
9+
['meta', { property: 'og:image', content: '/vue-color-picker/img/logo.png' }],
1010
['meta', { property: 'og:image:height', content: '640' }],
1111
['meta', { property: 'og:image:width', content: '640' }],
1212
['meta', { property: 'og:locale', content: 'en' }],
@@ -24,7 +24,7 @@ export default defineConfig({
2424
],
2525

2626
themeConfig: {
27-
logo: '/.vitepress/img/logo.png',
27+
logo: '/vue-color-picker/img/logo.png',
2828

2929
nav: [
3030
{ text: 'Guide', link: '/guide/' },
File renamed without changes.

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: home
44
hero:
55
name: 'Radial Color Picker'
66
tagline: 'Minimalistic color picker with a focus on size, accessibility and performance.'
7-
image: ./.vitepress/img/logo.png
7+
image: /logo.png
88
actions:
99
- theme: brand
1010
text: Get Started
@@ -20,4 +20,4 @@ features:
2020
details: Developed with mobile devices and keyboard usage in mind. Screen reader support.
2121
- title: Performant
2222
details: Highly tuned touch interactions to stay above 30fps on lower end mobile devices.
23-
---
23+
---

0 commit comments

Comments
 (0)