beactio-landing/next.config.mjs
2025-01-14 21:37:04 +07:00

16 lines
326 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{ hostname: "localhost" },
{ hostname: "randomuser.me" },
{
protocol: "https",
hostname: "supabasekong-mco40gw4sc0gs4ks40w4c4g4.dev3vds1.link",
},
],
},
};
export default nextConfig;