-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastro.config.mjs
More file actions
145 lines (144 loc) · 5.76 KB
/
astro.config.mjs
File metadata and controls
145 lines (144 loc) · 5.76 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import rehypeRewriteLinks from "./plugins/rehype-rewrite-links.mjs";
import rehypeExternalLinks from "./plugins/rehype-external-links.mjs";
import remarkIcpCliVersion from "./plugins/remark-icp-cli-version.mjs";
import remarkSnippet from "./plugins/remark-snippet.mjs";
import remarkHeadingId from "./plugins/remark-heading-id.mjs";
import remarkPlantUML from "./plugins/remark-plantuml.mjs";
import remarkIncludeFile from "./plugins/remark-include-file.mjs";
import agentDocs from "./plugins/astro-agent-docs.mjs";
import { sidebar } from "./sidebar.mjs";
import { TITLE, DESCRIPTION, PUBLISHER, OG_ALT } from "./src/branding.mjs";
// https://astro.build/config
export default defineConfig({
site: "https://docs.internetcomputer.org",
markdown: {
// Rehype plugins work with Starlight (remark plugins don't — Starlight overrides them).
// See: https://github.com/dfinity/icp-cli/issues/423
rehypePlugins: [rehypeRewriteLinks, rehypeExternalLinks],
remarkPlugins: [remarkHeadingId, remarkSnippet, remarkIcpCliVersion, remarkPlantUML, remarkIncludeFile],
},
integrations: [
starlight({
title: TITLE,
components: {
EditLink: "./src/components/EditLink.astro",
Footer: "./src/components/Footer.astro",
Header: "./src/components/Header.astro",
Hero: "./src/components/Hero.astro",
SiteTitle: "./src/components/SiteTitle.astro",
ThemeProvider: "./src/components/ThemeProvider.astro",
ThemeSelect: "./src/components/ThemeSelect.astro",
},
head: [
{
tag: "link",
attrs: {
rel: "llms",
href: "/llms.txt",
type: "text/plain",
title: "LLM-friendly documentation index",
},
},
{
tag: "link",
attrs: {
rel: "alternate",
type: "application/rss+xml",
title: TITLE,
href: "/feed.xml",
},
},
{
tag: "meta",
attrs: { name: "robots", content: "index, follow, max-image-preview:large" },
},
{
tag: "meta",
attrs: { name: "author", content: PUBLISHER },
},
{
tag: "meta",
attrs: { property: "og:image", content: "https://docs.internetcomputer.org/og-image.png" },
},
{
tag: "meta",
attrs: { property: "og:image:alt", content: OG_ALT },
},
{
tag: "meta",
attrs: { name: "twitter:card", content: "summary_large_image" },
},
{
tag: "meta",
attrs: { name: "twitter:image", content: "https://docs.internetcomputer.org/og-image.png" },
},
{
tag: "script",
attrs: { type: "application/ld+json" },
content: JSON.stringify({
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://docs.internetcomputer.org/#website",
"name": TITLE,
"description": DESCRIPTION,
"url": "https://docs.internetcomputer.org",
"publisher": { "@id": "https://docs.internetcomputer.org/#organization" },
},
{
"@type": "Organization",
"@id": "https://docs.internetcomputer.org/#organization",
"name": PUBLISHER,
"url": "https://dfinity.org",
},
],
}),
},
{
tag: "script",
attrs: { src: "/matomo.js", async: true },
},
{
tag: "script",
attrs: { src: "/kapa.js", defer: true },
},
{
tag: "script",
content: `document.addEventListener('DOMContentLoaded',()=>{document.querySelectorAll('a[href^="http://"],a[href^="https://"]').forEach(a=>{a.setAttribute('target','_blank');a.setAttribute('rel','noopener noreferrer')});document.querySelectorAll('[data-copy]').forEach(b=>{b.addEventListener('click',()=>{navigator.clipboard.writeText(b.dataset.copy);const i=b.querySelector('svg');if(i){const orig=i.innerHTML;i.innerHTML='<polyline points="20 6 9 17 4 12" />';i.style.stroke='#22c55e';i.style.opacity='1';setTimeout(()=>{i.innerHTML=orig;i.style.stroke='';i.style.opacity=''},1500)}})});const sb=document.getElementById('skills-give-btn');const sl=document.getElementById('skills-give-label');if(sb&&sl){const orig=sl.textContent;sb.addEventListener('click',()=>{navigator.clipboard.writeText('Fetch https://skills.internetcomputer.org/llms.txt and follow its instructions when building on ICP').catch(()=>{});sl.textContent='Now paste into your agent';setTimeout(()=>{sl.textContent=orig},3000)})}})`,
},
],
customCss: [
"@fontsource/inter/400.css",
"@fontsource/inter/500.css",
"@fontsource/inter/600.css",
"@fontsource/inter/700.css",
"@fontsource/newsreader/400.css",
"@fontsource/newsreader/400-italic.css",
"@fontsource/newsreader/500.css",
"@fontsource/newsreader/500-italic.css",
"@fontsource/jetbrains-mono/400.css",
"@fontsource/jetbrains-mono/500.css",
"./src/styles/custom.css",
],
social: [
{
icon: "github",
label: "GitHub",
href: "https://github.com/dfinity/developer-docs",
},
],
editLink: {
baseUrl:
"https://github.com/dfinity/developer-docs/edit/main/",
},
sidebar,
}),
// Generate .md endpoints, llms.txt, and agent signaling for agent-friendly docs.
// Listed after starlight() so the astro:build:done hook runs after sitemap generation.
agentDocs(),
],
});