developer-portfolios/next.config.mjs

10 lines
185 B
JavaScript
Raw Normal View History

2025-04-11 01:05:41 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['picsum.photos'],
},
reactStrictMode: true,
swcMinify: true,
};
export default nextConfig;