-
Notifications
You must be signed in to change notification settings - Fork 1
/
astro.config.mjs
83 lines (80 loc) · 1.97 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
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import react from "@astrojs/react";
import mdx from "@astrojs/mdx";
// https://astro.build/config
import sitemap from "@astrojs/sitemap";
import rehypeExternalLinks from "rehype-external-links";
import rehypeSlug from "rehype-slug";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import image from "@astrojs/image";
import { remarkReadingTime } from "./src/plugins/remark-read-time-plugin.mjs";
import rehypePrettyCode from "rehype-pretty-code";
import json from "./public/assets/moon_ii.json" assert { type: "json" };
const prettyCodeOptions = {
theme: json,
onVisitLine(node) {
if (node.children.length === 0) {
node.children = [
{
type: "text",
value: " ",
},
];
}
},
onVisitHighlightedLine(node) {
node.properties.className.push("highlighted");
},
onVisitHighlightedWord(node) {
node.properties.className = ["word"];
},
tokensMap: {},
};
// https://astro.build/config
export default defineConfig({
site: `https://kohan.dev/`,
markdown: {
extendDefaultPlugins: true,
syntaxHighlight: false,
remarkPlugins: [remarkReadingTime],
rehypePlugins: [
[rehypePrettyCode, prettyCodeOptions],
[
rehypeExternalLinks,
{
target: "_blank",
rel: ["noreferrer noopener"],
content: {
type: "text",
value: "↗",
},
},
],
rehypeSlug,
[
rehypeAutolinkHeadings,
{
properties: {
class: "heading-link heading-link--hidden---effects",
"data-heading-link": true,
},
behavior: "wrap",
},
],
],
// shikiConfig: {
// theme: "one-dark-pro",
// wrap: true,
// },
},
integrations: [
react(),
mdx({
remarkPlugins: [remarkReadingTime],
}),
sitemap(),
tailwind(),
image(),
],
});