-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.ts
45 lines (42 loc) · 1.17 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
import type { NextConfig } from "next";
import createMDX from "@next/mdx";
import mdxMermaid from "mdx-mermaid";
const nextConfig = {
pageExtensions: ["mdx", "ts", "tsx"],
} as NextConfig;
const withMDX = createMDX({
options: {
jsx: true,
remarkPlugins: [
[mdxMermaid],
// @ts-expect-error wrong types
["remark-gfm", { strict: true, throwOnError: true }],
],
rehypePlugins: [
// @ts-expect-error wrong types
["rehype-mdx-import-media", { strict: true, throwOnError: true }],
[
// @ts-expect-error wrong types
"rehype-pretty-code",
{ strict: true, throwOnError: true, keepBackground: false },
],
// @ts-expect-error wrong types
["rehype-slug", { strict: true, throwOnError: true }],
[
// @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);