-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastro.config.mjs
More file actions
46 lines (43 loc) · 1.6 KB
/
astro.config.mjs
File metadata and controls
46 lines (43 loc) · 1.6 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import tailwindcss from '@tailwindcss/vite';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Lution',
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/wookhq/lution' }, { icon: 'discord', label: 'Discord', href: 'https://discord.gg/BXT7FYjTBa' }],
customCss: [
'./src/styles/global.css',
'@fontsource-variable/lexend/index.css',
],
logo: {
src: './src/assets/lutiontext.svg',
replacesTitle: true,
},
sidebar: [
{
label : 'Lution',
items : [
{ label: 'Introduction', slug: 'lution/introduction' },
{ label: 'Installation', slug: 'lution/installation' },
{ label: 'Uninstalling Lution', slug: 'lution/uninstall' },
{ label: 'FAQ', slug: 'lution/faq' },
{ label: 'Reviews', slug: 'funstuff/reviews' },
],
},
{
label : 'Lution Marketplace',
items : [
{ label: 'Add your own theme/mods into the marketplace', slug: 'lutionmarketplace/addtheme' },
{ label: 'Create your own marketplace provider', slug: 'lutionmarketplace/ownmrk' },
],
}
],
}),
],
vite: {
plugins: [tailwindcss()],
},
});