added backend

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-12-24 14:17:04 +05:00
parent de12e23af1
commit c5d3b02737
11 changed files with 149 additions and 179 deletions

View File

@@ -1,7 +1,18 @@
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/**",
},
],
},
};
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig = {};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);
export default withNextIntl(nextConfig);