mirror of
https://github.com/plannotator/effective-html.git
synced 2026-09-19 01:11:19 +08:00
23 lines
425 B
JavaScript
23 lines
425 B
JavaScript
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/docs.md",
|
|
destination: "/llms.mdx/docs",
|
|
},
|
|
{
|
|
source: "/docs/:path*.md",
|
|
destination: "/llms.mdx/docs/:path*",
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
const withMDX = createMDX();
|
|
|
|
export default withMDX(config);
|