developer-portfolios/next.config.mjs
2025-04-11 02:05:41 +01:00

10 lines
185 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['picsum.photos'],
},
reactStrictMode: true,
swcMinify: true,
};
export default nextConfig;