-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.ts
53 lines (50 loc) · 1.29 KB
/
next.config.ts
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
import type { NextConfig } from "next";
import createMDX from "@next/mdx";
import mdxMermaid from "mdx-mermaid";
import "@/lib/env";
const nextConfig = {
pageExtensions: ["mdx", "ts", "tsx"],
experimental: {
reactCompiler: true,
},
} as NextConfig;
const withMDX = createMDX({
options: {
remarkPlugins: [
// @ts-expect-error wrong types
["remark-gfm", { strict: true, throwOnError: true }],
[mdxMermaid],
],
rehypePlugins: [
// @ts-expect-error wrong types
["rehype-mdx-import-media", { strict: true, throwOnError: true }],
// @ts-expect-error wrong types
["rehype-slug", { strict: true, throwOnError: true }],
[
// @ts-expect-error wrong types
"rehype-pretty-code",
{
strict: true,
throwOnError: true,
keepBackground: false,
theme: "synthwave-84",
},
],
[
// @ts-expect-error wrong types
"rehype-autolink-headings",
{
strict: true,
throwOnError: true,
behavior: "append",
properties: {
className: ["subheading-anchor"],
ariaLabel: "Link to section",
},
},
],
],
},
});
// Merge MDX config with Next.js config
export default withMDX(nextConfig);