import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, images: { domains: ["habibapp.com"], // Add the domain for image hosting }, i18n: { locales: [ "en", "es", "de", "uz", "pt", "bn", "zh", "az", "ur", "fr", "tr", "id", "sw", "ru", "ar", "tg", "fa", "gu", "ks", "ha", ], // Add the locales you want to support defaultLocale: "en", // Default language }, // Uncomment these if you want to disable TypeScript build errors or ESLint during build // typescript: { // ignoreBuildErrors: true // }, // eslint: { // ignoreDuringBuilds: true // } }; export default nextConfig;