I’m trying to load fonts into my Phoenix framework, I keep getting the following error
[debug] ** (Phoenix.Router.NoRouteError) no route found for GET /static/fonts/stack-interface.ttf (MagnifyWeb.Router)
However, I added my fonts folder to assets/static/fonts
and I have fonts set at my endpoint
plug Plug.Static,
at: "/", from: :magnify, gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt)