22 lines
472 B
JavaScript
22 lines
472 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.supabase.co',
|
|
},
|
|
],
|
|
},
|
|
webpack: (config) => {
|
|
// Suppress cache serialization warnings
|
|
config.infrastructureLogging = {
|
|
level: 'error',
|
|
};
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|