import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { domains: ['images.unsplash.com'], }, eslint: { ignoreDuringBuilds: true, }, compiler: { removeConsole: process.env.NODE_ENV === 'production', }, }; export default nextConfig;