-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.mjs
63 lines (59 loc) · 1.24 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
import createMDX from "@next/mdx";
import remarkGfm from "remark-gfm";
import rehypePrettyCode from "rehype-pretty-code";
import rehypeSlug from "rehype-slug";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
images: {
remotePatterns: [{ hostname: "images.microcms-assets.io" }],
},
experimental: {
webpackBuildWorker: true,
serverActions: {
enabled: true,
},
},
logging: {
fetches: {
fullUrl: true,
},
},
redirects() {
return [
{
source: "/about",
destination: "/about/personal.ts",
permanent: true,
},
{
source: "/activity",
destination: "/activity/languages",
permanent: true,
},
];
},
};
const withMDX = createMDX({
options: {
remarkPlugins: [remarkGfm],
rehypePlugins: [
rehypeSlug,
rehypeAutolinkHeadings,
[
rehypePrettyCode,
{
theme: {
dark: "github-dark-dimmed",
light: "github-light",
},
keepBackground: false,
},
],
],
},
});
export default withMDX(nextConfig);