mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
import type { NextConfig } from "next";
|
|
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
};
|
|
|
|
// Wrap the config with createMDX
|
|
const withMDX = createMDX({});
|
|
|
|
export default withMDX(nextConfig);
|