Files
spestexnika/next.config.ts
nabijonovdavronbek619@gmail.com 77c6baaa55 slider component updated
2026-04-28 11:29:06 +05:00

26 lines
570 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./i18n/request.ts");
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 withNextIntl(nextConfig);