mirror of
https://github.com/Dokploy/website.git
synced 2026-06-27 10:05:37 +02:00
- Added new OpenAPI components and updated the documentation structure with new MDX files for various API references. - Introduced a script to fix OpenAPI schema issues, ensuring proper response schemas and security definitions. - Updated package dependencies to include fumadocs-openapi for improved API documentation generation. - Enhanced global CSS to incorporate new styles from fumadocs-openapi. - Modified the pnpm-lock.yaml to reflect new package versions and dependencies.
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
serverExternalPackages: ['shiki', 'fumadocs-openapi'],
|
|
},
|
|
};
|
|
|
|
export default withMDX(config);
|