Skip to content

Commit 00a6245

Browse files
committed
fix: update VitePress config to disable dead link checking and format social links
1 parent 1dd3a9d commit 00a6245

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

docs/.vitepress/config.ts

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import { defineConfig } from 'vitepress'
2-
import { fileURLToPath, URL } from 'node:url'
3-
import tailwindcss from 'tailwindcss'
4-
import autoprefixer from 'autoprefixer'
1+
import { defineConfig } from 'vitepress';
2+
import { fileURLToPath, URL } from 'node:url';
3+
import tailwindcss from 'tailwindcss';
4+
import autoprefixer from 'autoprefixer';
55

66
// https://vitepress.dev/reference/site-config
77
export default defineConfig({
88
title: 'Altus 4',
99
description: 'AI-Enhanced Search Engine',
1010
base: '/docs/',
11-
ignoreDeadLinks: true,
11+
ignoreDeadLinks: false,
1212

1313
// Configure Vite for VitePress
1414
vite: {
@@ -83,6 +83,9 @@ export default defineConfig({
8383
},
8484
],
8585

86-
socialLinks: [{ icon: 'github', link: 'https://github.com/altus4/core' }],
86+
socialLinks: [
87+
{ icon: 'github', link: 'https://github.com/altus4/core' },
88+
{ icon: 'globe', link: 'https://altus4.thavarshan.com' },
89+
],
8790
},
88-
})
91+
});

0 commit comments

Comments
 (0)