SurfSense/surfsense_web/next.config.ts

17 lines
324 B
TypeScript
Raw Normal View History

2025-04-07 23:47:06 -07:00
import type { NextConfig } from "next";
2025-04-22 02:24:13 -07:00
import { createMDX } from 'fumadocs-mdx/next';
2025-04-07 23:47:06 -07:00
const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
};
2025-04-22 02:24:13 -07:00
// Wrap the config with createMDX
const withMDX = createMDX({});
export default withMDX(nextConfig);