2025-07-27 10:05:37 -07:00
|
|
|
import { createMDX } from "fumadocs-mdx/next";
|
2025-07-27 10:54:25 -07:00
|
|
|
import type { NextConfig } from "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-07-27 10:54:25 -07:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "images.unsplash.com",
|
|
|
|
|
},
|
2025-07-27 13:45:58 -07:00
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "static.vecteezy.com",
|
|
|
|
|
},
|
2025-07-27 10:54:25 -07:00
|
|
|
],
|
|
|
|
|
},
|
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);
|