2024-11-05 18:06:15 +01:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-11-05 18:13:12 +01:00
|
|
|
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;
|