headroom/docs/next.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
251 B
JavaScript
Raw Normal View History

2026-04-12 13:15:58 +06:00
import { createMDX } from 'fumadocs-mdx/next';
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
serverExternalPackages: ['typescript', 'twoslash'],
};
export default withMDX(config);