import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "http", hostname: "192.168.124.9", port: "8080", pathname: "/uploads/**", }, { protocol: "http", hostname: "localhost", port: "8080", pathname: "/uploads/**", }, { protocol: "http", hostname: "127.0.0.1", port: "8080", pathname: "/uploads/**", }, ], }, }; export default nextConfig;