MyStuff/my-favorites-app/next.config.ts
2025-04-27 21:27:35 +02:00

23 lines
416 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
images: {
domains: [
'm.media-amazon.com',
'i.scdn.co',
'www.moma.org'
],
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
// Enable strict mode for better development experience
reactStrictMode: true,
};
export default nextConfig;