MyStuff/my-favorites-app/next.config.mjs
2025-04-27 21:33:23 +02:00

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;