SurfSense/surfsense_web/next.config.ts
DESKTOP-RTLN3BA\$punk d5ccced6b9 feat: frontend docker to use nextjs production build
- Damn this made things fast af.
2025-10-23 20:37:01 -07:00

25 lines
433 B
TypeScript

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