Files
ML4E/next.config.ts
2026-01-11 18:35:15 +05:30

35 lines
531 B
TypeScript

const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "res.cloudinary.com",
},
{
protocol: "https",
hostname: "picsum.photos",
},
],
},
async headers() {
return [
{
source: "/team/:path*",
headers: [
{
key: "Access-Control-Allow-Origin",
value: "*",
},
],
},
];
},
};
export default nextConfig;