mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-08 22:48:14 -05:00
25 lines
459 B
TypeScript
25 lines
459 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,
|
|
},
|
|
{
|
|
source: '/docs/:path*.mdx',
|
|
destination: '/llms.mdx/:path*',
|
|
permanent: true,
|
|
},
|
|
]
|
|
},
|
|
}
|
|
|
|
export default withMDX(config)
|