-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathastro.config.mjs
More file actions
123 lines (118 loc) · 3.18 KB
/
astro.config.mjs
File metadata and controls
123 lines (118 loc) · 3.18 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import { getSidebar } from "./sidebar/getSidebar";
import starlightLinksValidator from "starlight-links-validator";
// Removes any "meta" objects used to generate the sidebar
const sanitizeSidebar = (nodes) => {
return nodes.reduce((acc, node) => {
const { meta, ...sanitizedNode } = node;
if (meta?.empty) {
return acc;
}
if (Array.isArray(sanitizedNode.items)) {
sanitizedNode.items = sanitizeSidebar(sanitizedNode.items);
}
acc.push(sanitizedNode);
return acc;
}, []);
};
// https://astro.build/config
export default defineConfig({
site: "https://wiki.online.ntnu.no",
trailingSlash: "always",
integrations: [
// https://starlight.astro.build/reference/configuration/
starlight({
title: "Online Wiki",
favicon: "/images/online_bla_o.svg",
defaultLocale: "root",
locales: {
root: {
label: "Norsk",
lang: "no",
},
},
logo: {
light: "./src/assets/img/online_bla_o.svg",
dark: "./src/assets/img/online_hvit_o.svg",
},
lastUpdated: true,
customCss: ["./src/styles/custom.css"],
editLink: { baseUrl: "https://github.com/dotkom/wiki/edit/main/" },
social: [
{
icon: "facebook",
label: "Facebook",
href: "https://facebook.com/LinjeforeningenOnline",
},
{
icon: "instagram",
label: "Instagram",
href: "https://www.instagram.com/online_ntnu/",
},
{
icon: "slack",
label: "Slack",
href: "https://onlinentnu.slack.com/",
},
{
icon: "github",
label: "GitHub",
href: "https://github.com/dotkom/wiki",
},
{
icon: "discord",
label: "Discord",
href: "https://discordapp.com/invite/2XB9egU",
},
],
head: [
{
tag: "script",
attrs: {
"defer": true,
"data-domain": "wiki.online.ntnu.no",
"src":
"https://plausible.io/js/script.outbound-links.file-downloads.js",
},
},
{
tag: "script",
attrs: {
type: "application/ld+json",
},
content: JSON.stringify({
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Linjeforeningen Onlines Wiki",
"alternateName": "Online Wiki",
"url": "https://wiki.online.ntnu.no",
}),
},
{
tag: "link",
attrs: {
rel: "icon",
href: "/images/icon-256.png",
sizes: "256x256",
},
},
{
tag: "meta",
attrs: {
name: "application-name",
content: "Online Wiki",
},
},
],
// Makes it so not everything is in one folder
sidebar: sanitizeSidebar(getSidebar()[0].items),
plugins: [
starlightLinksValidator({
errorOnRelativeLinks: false,
errorOnInvalidHashes: false,
}),
],
}),
],
});