SurfSense/surfsense_web/next.config.ts
2025-07-27 13:45:58 -07:00

28 lines
498 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: "images.unsplash.com",
},
{
protocol: "https",
hostname: "static.vecteezy.com",
},
],
},
};
// Wrap the config with createMDX
const withMDX = createMDX({});
export default withMDX(nextConfig);