-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
84 lines (83 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { defineConfig } from "astro/config";
import starlightImageZoom from "starlight-image-zoom";
import starlight from "@astrojs/starlight";
import vercel from "@astrojs/vercel/serverless";
// https://astro.build/config
export default defineConfig({
site: "https://docs.himarpl.com",
integrations: [
starlight({
plugins: [starlightImageZoom()],
editLink: {
baseUrl: "https://github.com/himarplupi/docs-himarpl/edit/main",
},
title: "Documentation HIMARPL",
defaultLocale: "root",
locales: {
// English docs in `src/content/docs/`
root: {
label: "English",
lang: "en",
},
// Indonesia docs in `src/content/docs/id/`
id: {
label: "Indonesia",
lang: "id",
},
},
social: {
github: "https://github.com/himarplupi",
},
sidebar: [
{
label: "Start Here",
translations: {
id: "Mulai Dari Sini",
},
autogenerate: {
directory: "getting-started",
},
},
{
label: "Overview",
translations: {
id: "Pengantar",
},
autogenerate: {
directory: "overview",
},
},
{
label: "ascendia-himarpl",
autogenerate: {
directory: "ascendia-himarpl",
},
},
{
label: "blog-himarpl",
autogenerate: {
directory: "blog-himarpl",
},
},
{
label: "pmb-himarpl",
autogenerate: {
directory: "pmb-himarpl",
},
},
{
label: "Other Projects",
translations: {
id: "Proyek Lainnya",
},
autogenerate: {
directory: "other-projects",
},
},
],
customCss: ["./src/styles/custom.css"],
}),
],
output: "server",
adapter: vercel(),
});