SurfSense/surfsense_web/next.config.ts

17 lines
316 B
TypeScript
Raw Normal View History

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