-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.mjs
64 lines (60 loc) · 1.4 KB
/
next.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
import createMDX from "@next/mdx"
import rehypeExtractToc from "@stefanprobst/rehype-extract-toc"
import rehypeAutolinkHeadings from "rehype-autolink-headings"
import rehypeSlug from "rehype-slug"
import remarkGfm from "remark-gfm"
import {
rehypeCommandProperties,
rehypeComponentPreview,
rehypeComponentSource,
rehypeRawString,
} from "./src/lib/rehype/component/index.mjs"
import { rehypeSyntaxHighlighting } from "./src/lib/rehype/syntax-highlighting/index.mjs"
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ["mdx", "tsx", "ts", "js", "jsx"],
reactStrictMode: true,
redirects() {
return [
{
source: "/docs",
destination: "/docs/getting-started/introduction",
permanent: true,
},
{
source: "/docs/getting-started",
destination: "/docs/getting-started/introduction",
permanent: true,
},
{
source: "/docs/components",
destination: "/docs/components/accordion",
permanent: true,
},
]
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.pexels.com",
},
],
},
}
const withMDX = createMDX({
options: {
remarkPlugins: [remarkGfm],
rehypePlugins: [
rehypeSlug,
rehypeAutolinkHeadings,
rehypeExtractToc,
rehypeRawString,
rehypeComponentPreview,
rehypeComponentSource,
...rehypeSyntaxHighlighting,
rehypeCommandProperties,
],
},
})
export default withMDX(nextConfig)