a tool for shared writing and social publishing
0

Configure Feed

Select the types of activity you want to include in your feed.

fix links in image loader

Jared Pereira (Mar 26, 2026, 2:16 PM -0700) 99ecb36d cf193450

+2 -1
+2 -1
supabase/supabase-image-loader.js
··· 1 1 export default function supabaseLoader({ src, width, quality }) { 2 - return `${process.env.NEXT_PUBLIC_SUPABASE_API_URL}/storage/v1/render/image/public/${src}?width=${width}&quality=${quality || 75}`; 2 + const path = src.startsWith("/") ? src.slice(1) : src; 3 + return `${process.env.NEXT_PUBLIC_SUPABASE_API_URL}/storage/v1/render/image/public/${path}?width=${width}&quality=${quality || 75}`; 3 4 }