import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  images: {
    remotePatterns: [
      {
        protocol: 'https',
        hostname: 'facadeapi.tomsher.store',
        port: '',
        pathname: '/public/uploads/**', // This allows all images in that directory
      },
    ],
  },
};

export default nextConfig;
