2025-01-30 07:42:18 +07:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
images: {
|
2025-02-05 07:54:24 +07:00
|
|
|
remotePatterns: [
|
|
|
|
{ hostname: "localhost" },
|
|
|
|
{ hostname: "randomuser.me" },
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "minio-s3.dev3vds1.link",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "supabasekong-swwwcowsg8kso0cg4swosw48.dev3vds1.link",
|
|
|
|
},
|
|
|
|
],
|
2025-01-30 07:42:18 +07:00
|
|
|
},
|
2025-02-05 07:54:24 +07:00
|
|
|
// transpilePackages: ["geist"],
|
2025-01-30 07:42:18 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
export default nextConfig;
|