beactio-landing/next.config.mjs
2025-01-16 08:51:30 +07:00

20 lines
414 B
JavaScript

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