mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 13:34:06 +01:00
43 lines
932 B
JavaScript
43 lines
932 B
JavaScript
const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL_SOURCE;
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: SUPABASE_URL,
|
|
port: "",
|
|
pathname: "/storage/v1/object/sign/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: SUPABASE_URL,
|
|
port: "",
|
|
pathname: "/storage/v1/object/public/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "upload.wikimedia.org",
|
|
pathname: "/wikipedia/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "avatars.githubusercontent.com",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "assets.republic.com",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "media.licdn.com",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
export default nextConfig;
|