mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-19 02:34:37 -05:00
20 lines
345 B
TypeScript
20 lines
345 B
TypeScript
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: "/",
|
|
destination: "/introduction",
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default withMDX(config);
|