-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathastro.config.mjs
More file actions
51 lines (49 loc) · 1.13 KB
/
astro.config.mjs
File metadata and controls
51 lines (49 loc) · 1.13 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
import { defineConfig } from 'astro/config'
import starlight from '@astrojs/starlight'
import tailwind from '@astrojs/tailwind'
import react from '@astrojs/react'
// https://astro.build/config
export default defineConfig({
site: 'https://vim.kr',
integrations: [
starlight({
favicon: '/favicon.ico',
title: 'vim.kr',
customCss: [
'./src/styles/global.css',
],
social: {
discord: 'https://discord.com/widget?id=1071395189219938354&theme=dark',
github: 'https://github.com/vim-kr/renewal',
},
sidebar: [
{
label: 'Getting Started',
autogenerate: {
directory: 'getting-started',
},
},
{
label: 'Vim As IDE',
autogenerate: {
directory: 'vim-as-ide',
},
},
{
label: 'Note Taking',
autogenerate: {
directory: 'note-taking',
},
},
{
label: 'Neovim News',
autogenerate: {
directory: 'neovim-news',
},
},
],
}),
tailwind(),
react(),
],
})