connected to backend

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-02-04 10:01:25 +05:00
parent 1d0698573f
commit e7b838e3fe
21 changed files with 571 additions and 395 deletions

View File

@@ -1,6 +1,22 @@
// next.config.ts
const nextConfig = {
reactStrictMode: true,
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'api.spes-texnika.uz',
port: '',
pathname: '/resources/media/**',
},
{
protocol: 'https',
hostname: 'api.spes-texnika.uz',
port: '',
pathname: '/resources/media/**',
},
],
},
};
export default nextConfig;
export default nextConfig;