// next.config.ts import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "logiapi.slash.sa", }, ], }, }; export default nextConfig;