// next.config.ts import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, images: { domains: ["habibapp.com"], // Add the domain for image hosting }, // typescript : { // ignoreBuildErrors : true // }, // eslint : { // ignoreDuringBuilds : true // } // Add other Next.js config options here as needed }; export default nextConfig;