Files
website/apps/docs-new/next.config.mjs
Mauricio Siu 19e7bca63b refactor: remove experimental serverExternalPackages configuration
- Removed the experimental serverExternalPackages setting for 'shiki' and 'fumadocs-openapi' from the Next.js configuration file.
2025-12-07 06:10:49 -06:00

12 lines
198 B
JavaScript

import { createMDX } from 'fumadocs-mdx/next';
const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
};
export default withMDX(config);