Initial commit

This commit is contained in:
2026-04-24 19:18:15 +08:00
commit fbcbe08696
555 changed files with 96692 additions and 0 deletions

25
docs/next.config.mjs Normal file
View File

@@ -0,0 +1,25 @@
import { createMDX } from 'fumadocs-mdx/next';
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
async rewrites() {
return [
{
source: '/docs/:path*.mdx',
destination: '/llms.mdx/docs/:path*',
},
];
},
webpack: (config) => {
config.experiments = {
...config.experiments,
topLevelAwait: true,
};
return config;
},
};
export default withMDX(config);