24 lines
536 B
JavaScript
24 lines
536 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Disable the standalone output for now to simplify deployment
|
|
// output: 'standalone',
|
|
images: {
|
|
domains: [
|
|
'm.media-amazon.com',
|
|
'i.scdn.co',
|
|
'www.moma.org'
|
|
],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
],
|
|
unoptimized: true, // This can help with deployment issues
|
|
},
|
|
// Enable strict mode for better development experience
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|