Next.js Discord

Discord Forum

Can I use a custom image loader for certain images but defer to the default otherwise?

Unanswered
Short mackerel posted this in #help-forum
Open in Discord
Original message was deleted.

5 Replies

Short mackerel
Thank you. However, I am more specifically asking if I can supply this logic in the custom loader rather than supply it specifically on each use. The functionality you are pointing to is what I'll do if it isn't possible in the custom loader config.
Shy Albatross
wrap next/image in your own custom component with some default loader behavior and then make it act in a different way via props
or make it match the src URL and decide on its own if it needs this or that
Short mackerel
Yes, thank you that is my plan if unable to do it in the custom loader. However, again, I am just trying to find out if this is possible in the custom loader.