23 lines
416 B
TypeScript
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;
|