Files
ML4E/next.config.ts
2025-10-24 22:57:44 +05:30

19 lines
340 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "res.cloudinary.com",
},
{ protocol: "https", hostname: "picsum.photos" },
],
},
};
export default nextConfig;