Saved images not displaying on dev machine using filesystem

Gotcha, just a sanity check :slight_smile:

Looking at the Plug.Static module docs,

The preferred form is to use :from with an atom or tuple, since it will make your application independent from the starting directory. For example, if you pass:

plug Plug.Static, from: "priv/app/path"

Plug.Static will be unable to serve assets if you build releases or if you change the current directory. Instead do:

plug Plug.Static, from: {:app_name, "priv/app/path"}

Have you tried it with the preferred form?