-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.ts
74 lines (73 loc) · 1.71 KB
/
astro.config.ts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import qwikdev from "@qwikdev/astro";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [starlight({
favicon: '/favicon.ico',
logo: {
src: './src/assets/logo.svg',
alt: 'Sikessem',
replacesTitle: true
},
title: 'Sikessem',
editLink: {
baseUrl: 'https://github.com/sikessem/sikessem.github.io/edit/0.x/src/content/docs/'
},
social: {
github: 'https://github.com/sikessem',
twitter: 'https://twitter.com/@SikessemOrg'
},
locales: {
root: {
label: 'English',
lang: 'en'
},
fr: {
label: 'Français'
}
},
sidebar: [{
label: 'Projects',
translations: {
fr: 'Projets'
},
autogenerate: {
directory: 'projects'
}
}, {
label: 'Packages',
autogenerate: {
directory: 'packages'
}
}, {
label: '🧪 Testing and Debugging',
translations: {
fr: 'Test et Débogage'
},
link: 'testing'
}, {
label: '👥 Contribution Guide',
translations: {
fr: '👥 Guide de Contribution'
},
link: 'contributions'
}, {
label: '🛂 Code of Conduct',
translations: {
fr: '🛂 Code de Conduite'
},
link: 'code-of-conduct'
}],
customCss: ['./src/designs/global.css']
}), tailwind({
applyBaseStyles: false
}), qwikdev()],
// Process images with sharp: https://docs.astro.build/en/guides/assets/#using-sharp
image: {
service: {
entrypoint: 'astro/assets/services/sharp'
}
}
});