This commit is contained in:
2026-04-15 11:19:45 +00:00
commit acb79b2db7
183 changed files with 22067 additions and 0 deletions

37
next.config.ts Normal file
View File

@@ -0,0 +1,37 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin"
const nextConfig: NextConfig = {
images:{
remotePatterns: [
{
protocol: 'https',
hostname: 'getgreen.uz',
},
{
protocol: "https",
hostname: "felix-s3.jscorp.uz"
},
{
protocol: "https",
hostname: "minio.quyoshli.uz"
},
{
protocol: 'http',
hostname: '185.228.88.227',
port: '9000',
pathname: '/**',
},
]
},
devIndicators: false,
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
};
const withNextIntl = createNextIntlPlugin("./src/shared/config/i18n/request.ts")
export default withNextIntl(nextConfig);