-
Notifications
You must be signed in to change notification settings - Fork 3
/
vocs.config.tsx
54 lines (48 loc) · 1.05 KB
/
vocs.config.tsx
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
import { defineConfig } from 'vocs'
import { sidebar, topNav } from './nav'
import ViteYaml from '@modyfi/vite-plugin-yaml'
export default defineConfig({
title: 'Sequence',
iconUrl: { light: '/img/favicon.ico', dark: '/img/favicon.ico' },
logoUrl: {
light: '/img/sequence-composite-light.svg',
dark: '/img/sequence-composite-dark.svg',
},
vite: {
ssr: {
noExternal: ['@docsearch/react'],
},
plugins: [ViteYaml()],
},
// rootDir: '.',
basePath: '/',
topNav,
sidebar,
theme: {
// accentColor: {
// light: '#442CA8',
// dark: '#99ADED',
// },
colorScheme: 'dark',
variables: {
fontFamily: {
default: 'Inter',
// mono: 'Roboto Mono'
},
color: {
background: {
light: '#f0f0f0',
dark: '#111111',
},
// background5: {
// light: '#dddddd',
// dark: '#111111',
// }
// backgroundDark: {
// light: '#dddddd',
// dark: '#151515'
// }
},
},
},
})