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