mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-19 02:34:37 -05:00
25 lines
460 B
TypeScript
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);
|