21 lines
449 B
JavaScript
21 lines
449 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{ hostname: "localhost" },
|
|
{ hostname: "randomuser.me" },
|
|
{
|
|
protocol: "https",
|
|
hostname: "minio-s3.dev3vds1.link",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "supabasekong-swwwcowsg8kso0cg4swosw48.dev3vds1.link",
|
|
},
|
|
],
|
|
},
|
|
// transpilePackages: ["geist"],
|
|
};
|
|
|
|
export default nextConfig;
|