mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
|
|
import { createMDX } from 'fumadocs-mdx/next';
|
||
|
|
|
||
|
|
const withMDX = createMDX();
|
||
|
|
|
||
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const config = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
serverExternalPackages: ['typescript', 'twoslash'],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default withMDX(config);
|