mirror of
https://github.com/Dokploy/website.git
synced 2026-07-03 13:05:26 +02:00
- Removed the experimental serverExternalPackages setting for 'shiki' and 'fumadocs-openapi' from the Next.js configuration file.
12 lines
198 B
JavaScript
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);
|