import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // output: 'standalone',
  images: {
    remotePatterns: [
      { protocol: "https", hostname: "dev.p2c.com.au" },
      { protocol: "https", hostname: "test.p2c.com.au" },
      { protocol: "https", hostname: "p2c.com.au" },
    ],
  },
};

export default nextConfig;
