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;