SurfSense/surfsense_web/next.config.ts
2025-08-23 19:40:29 -07:00

24 lines
410 B
TypeScript

import { createMDX } from "fumadocs-mdx/next";
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
// Wrap the config with createMDX
const withMDX = createMDX({});
export default withMDX(nextConfig);