Files
firma/next.config.ts
2025-12-25 10:58:11 +00:00

21 lines
431 B
TypeScript

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