-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
59 lines (57 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// @ts-check
import starlight from "@astrojs/starlight"
import tailwindcss from "@tailwindcss/vite"
import { defineConfig } from "astro/config"
// TODO: https://github.com/expressive-code/expressive-code/issues/250
export default defineConfig({
integrations: [
starlight({
title: "Tailwind CSS Addons",
social: {
github: "https://github.com/babakfp/tailwindcss-addons",
},
sidebar: [
{
label: "Get Started",
slug: "", // "/"
},
{
label: "Preflight",
autogenerate: { directory: "preflight" },
},
{
label: "Theme",
autogenerate: { directory: "theme" },
},
{
label: "Utilities",
autogenerate: { directory: "utilities" },
},
{
label: "Variants",
autogenerate: { directory: "variants" },
},
{
slug: "changelog",
},
],
customCss: [
"@fontsource-variable/jost",
"@fontsource-variable/jetbrains-mono",
"./src/styles/global.css",
],
components: {
ThemeSelect: "./src/components/ThemeSelect.astro",
ThemeProvider: "./src/components/ThemeProvider.astro",
},
editLink: {
baseUrl:
"https://github.com/babakfp/tailwindcss-addons/edit/main/package",
},
lastUpdated: true,
}),
],
vite: {
plugins: [tailwindcss()],
},
})