Files
ML4E/next.config.ts
Ashwani Senapati 52e222bc91 fix:teams page
2025-11-02 00:30:13 +05:30

30 lines
534 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" },
],
},
async headers() {
return [
{
source: '/team/:path*',
headers: [
{ key: 'Access-Control-Allow-Origin', value: '*' },
],
},
];
},
};
export default nextConfig;