mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
import { createMDX } from "fumadocs-mdx/next";
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
output: "export",
|
|
experimental: {
|
|
reactCompiler: true,
|
|
},
|
|
};
|
|
|
|
export default withMDX(config);
|