Files
sim/docs/next.config.ts
2025-04-11 17:05:58 -07:00

25 lines
460 B
TypeScript

import { createMDX } from "fumadocs-mdx/next";
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
async redirects() {
return [
{
source: "/",
destination: "/docs/introduction",
permanent: true,
},
{
source: "/docs",
destination: "/docs/introduction",
permanent: true,
},
];
},
};
export default withMDX(config);