Files
firma/next.config.ts
nabijonovdavronbek619@gmail.com f9d27ec11d new web sayt
2025-11-25 21:06:55 +05:00

17 lines
412 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
images: {
remotePatterns: [],
unoptimized: process.env.NODE_ENV === "development",
},
experimental: {
optimizePackageImports: ["@react-three/fiber", "@react-three/drei"],
},
};
export default withNextIntl(nextConfig);