mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default withMDX(config);
|