beactio-landing/next.config.mjs

20 lines
414 B
JavaScript
Raw Normal View History

2025-01-13 07:08:59 +07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
2025-01-14 21:37:04 +07:00
remotePatterns: [
{ hostname: "localhost" },
{ hostname: "randomuser.me" },
{
protocol: "https",
hostname: "supabasekong-mco40gw4sc0gs4ks40w4c4g4.dev3vds1.link",
},
2025-01-16 08:51:30 +07:00
{
protocol: "https",
hostname: "minio-s3.dev3vds1.link",
},
2025-01-14 21:37:04 +07:00
],
2025-01-13 07:08:59 +07:00
},
};
export default nextConfig;