20 lines
414 B
JavaScript
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;
|