Skip to content

Commit 09d58e6

Browse files
committed
Fix image urls
1 parent 15b9e2a commit 09d58e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ export default defineConfig({
66
title: "workers-qb",
77
text: "Zero dependencies Query Builder for Cloudflare Workers",
88
cleanUrls: true,
9-
head: [['link', {rel: 'icon', type: "image/png", href: '/assets/logo-icon.png'}]],
9+
head: [['link', {rel: 'icon', type: "image/png", href: 'https://raw.githubusercontent.com/G4brym/workers-qb/refs/heads/main/docs/assets/logo-icon.png'}]],
1010
themeConfig: {
1111
// https://vitepress.dev/reference/default-theme-config
12-
logo: '/assets/logo-icon.png',
12+
logo: 'https://raw.githubusercontent.com/G4brym/workers-qb/refs/heads/main/docs/assets/logo-icon.png',
1313
nav: [
1414
{text: 'Home', link: '/'},
1515
{text: 'Docs', link: '/introduction'}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: home
44

55
hero:
66
name: "workers-qb"
7-
image: assets/logo-icon.png
7+
image: https://raw.githubusercontent.com/G4brym/workers-qb/refs/heads/main/docs/assets/logo-icon.png
88
tagline: Zero dependencies Query Builder for Cloudflare Workers
99
actions:
1010
- theme: brand

0 commit comments

Comments
 (0)