mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +02:00
17 lines
283 B
JavaScript
17 lines
283 B
JavaScript
import createMDX from "fumadocs-mdx/config";
|
|
|
|
const withMDX = createMDX();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default withMDX(config);
|