You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
779 B
42 lines
779 B
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: false,
|
|
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;
|