2026-04-21 22:20:39 +06:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-04-22 01:02:45 +06:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: 'https',
|
|
|
|
|
hostname: 'images.unsplash.com',
|
|
|
|
|
pathname: '/**',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-04-21 22:20:39 +06:00
|
|
|
};
|
|
|
|
|
|
2026-04-22 01:02:45 +06:00
|
|
|
export default nextConfig;
|