Per documentation, when I add plug Image.Plug to my Phoenix endpoint.ex, it intercepts all requests at / and fail the pipeline with
GET /
image_plug request failed: tag=malformed_url
Plug.Conn.AlreadySentError
I'm using Image.Plug.Provider.Cloudglafe.
To get around that, I have to add my own plug to forward only requests matching /cdn-cgi/image to Image_Plug, but I should not have to do that.
Per documentation, when I add
plug Image.Plugto my Phoenixendpoint.ex, it intercepts all requests at/and fail the pipeline withI'm using
Image.Plug.Provider.Cloudglafe.To get around that, I have to add my own plug to forward only requests matching
/cdn-cgi/imagetoImage_Plug, but I should not have to do that.