-
Notifications
You must be signed in to change notification settings - Fork 8
/
astro.config.mjs
40 lines (39 loc) · 1.33 KB
/
astro.config.mjs
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
site: 'https://mongodbthailand.com',
integrations: [
starlight({
title: 'MongoDB Thailand',
favicon: '/favicon.ico',
defaultLocale: 'th',
lastUpdated: true,
editLink: {
baseUrl: 'https://github.com/mongodbthailand/mongodbthailand.github.io/edit/main/',
},
social: {
facebook: 'https://www.facebook.com/groups/mongodbthailand/',
youtube: 'https://www.youtube.com/channel/UCTBf047qtAST4RXhYM61vVg',
github: 'https://github.com/mongodbthailand',
},
sidebar: [
{
label: 'Guides',
autogenerate: { directory: 'guides' },
},
{
label: 'Hacktoberfest 2023',
items: [
{ label: 'แนะนำเบื้องต้น', link: '/hacktoberfest-2023' },
{ label: 'เริ่มเขียนและส่งคอนเทนต์', link: '/hacktoberfest-2023/getting-start' },
{ label: 'Mongoberfest 2023', link: '/hacktoberfest-2023/event' },
],
},
],
customCss: ['./src/tailwind.css'],
}),
tailwind({ applyBaseStyles: false }),
],
});