mernmail-website/next.config.mjs

20 lines
303 B
JavaScript
Raw Permalink Normal View History

2024-11-05 18:06:15 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.sanity.io",
port: "",
},
],
},
eslint: {
ignoreDuringBuilds: true,
},
cacheMaxMemorySize: 0,
poweredByHeader: false
};
2024-11-05 18:06:15 +01:00
export default nextConfig;