enable mdxRs with GFM for markdown table rendering
- SHA
9af854256c709cfabf048b542c7d1c19fe3b1305- Parents
-
e1df711 - Tree
c487b7d
9af8542
9af854256c709cfabf048b542c7d1c19fe3b1305e1df711
c487b7d| Status | File | + | - |
|---|---|---|---|
| M |
next.config.mjs
|
5 | 0 |
next.config.mjsmodified@@ -4,6 +4,11 @@ import createMDX from "@next/mdx"; | ||
| 4 | 4 | const nextConfig = { |
| 5 | 5 | reactStrictMode: true, |
| 6 | 6 | pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"], |
| 7 | + experimental: { | |
| 8 | + mdxRs: { | |
| 9 | + mdxType: "gfm", | |
| 10 | + }, | |
| 11 | + }, | |
| 7 | 12 | }; |
| 8 | 13 | |
| 9 | 14 | const withMDX = createMDX({ |