add veryyyy basic docs renderer

This commit is contained in:
Lee
2024-04-20 00:34:42 +01:00
parent d0f926f330
commit 8169c08faa
11 changed files with 2011 additions and 11 deletions

View File

@ -1,3 +1,5 @@
import createMDX from '@next/mdx'
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
@ -17,4 +19,4 @@ const nextConfig = {
},
};
export default nextConfig;
export default createMDX()(nextConfig)