-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
56 lines (52 loc) · 1.56 KB
/
Copy pathconfig.ts
File metadata and controls
56 lines (52 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { defineConfig } from 'vitepress'
import { ptBR } from './locales/pt-BR'
import { en } from './locales/en'
export default defineConfig({
title: 'Arandu',
description: 'Markdown viewer and AI workspace',
cleanUrls: true,
lastUpdated: true,
head: [
['link', { rel: 'icon', type: 'image/svg+xml', href: '/icon.svg' }],
['link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' }],
['link', { rel: 'apple-touch-icon', href: '/apple-touch-icon.png' }],
['link', { rel: 'preconnect', href: 'https://fonts.googleapis.com' }],
['link', { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' }],
[
'link',
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap'
}
],
['meta', { name: 'theme-color', content: '#2D1B69' }],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'og:title', content: 'Arandu — Markdown viewer and AI workspace' }],
[
'meta',
{
property: 'og:description',
content: 'Markdown viewer and AI workspace for macOS, Linux, and Windows.'
}
]
],
locales: {
root: {
label: 'Português',
lang: 'pt-BR',
...ptBR
},
en: {
label: 'English',
lang: 'en-US',
...en
}
},
themeConfig: {
logo: '/icon.svg',
socialLinks: [{ icon: 'github', link: 'https://github.com/devitools/arandu' }],
search: {
provider: 'local'
}
}
})