Files
firma/next.config.ts
nabijonovdavronbek619@gmail.com c5d3b02737 added backend
2025-12-24 14:17:04 +05:00

19 lines
388 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "api.serenmebel.uz",
pathname: "/resources/media/**",
},
],
},
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);