Skip to content

Commit fea75fe

Browse files
committed
Update image paths in app.config.ts for production environment
1 parent 51358af commit fea75fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/app.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default defineAppConfig({
33
title: 'Flowforge',
44
description: 'Transform any Laravel model into production-ready drag-and-drop Kanban boards.',
55
url: 'https://flowforge.dev',
6-
image: '/social-card.png',
6+
image: process.env.NODE_ENV === 'production' ? '/flowforge/preview.png' : '/preview.png',
77
github: {
88
dir: 'docs/content',
99
branch: '2.x',
@@ -14,8 +14,8 @@ export default defineAppConfig({
1414
header: {
1515
logo: {
1616
alt: 'Flowforge Logo',
17-
light: '/logo-light.svg',
18-
dark: '/logo-dark.svg'
17+
light: '/flowforge/logo-light.svg',
18+
dark: '/flowforge/logo-dark.svg'
1919
},
2020
showLinkIcon: false,
2121
fluid: false,

0 commit comments

Comments
 (0)