Files
getgreen.uz/next.config.ts
2026-04-15 19:53:38 +05:00

62 lines
1.2 KiB
TypeScript

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