import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Skip ESLint during production builds (Vercel) – we can fix lint later eslint: { ignoreDuringBuilds: true, }, images: { remotePatterns: [ { protocol: 'https', hostname: 'images.unsplash.com', }, ], }, }; export default nextConfig;