Files
cbd420/next.config.js
2025-12-20 10:32:36 +05:30

16 lines
250 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
}
module.exports = nextConfig