Initial commit from Create Fumadocs App

This commit is contained in:
2025-06-02 23:28:40 +08:00
commit 148aac5a92
20 changed files with 1158 additions and 0 deletions

10
next.config.mjs Normal file
View File

@ -0,0 +1,10 @@
import { createMDX } from 'fumadocs-mdx/next';
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
};
export default withMDX(config);