Purely as a learning exercise, I'm trying to serve up a reveal.js page using phoenix. The steps seem pretty simple, I create the app, download the dependencies, etc.
Then I go into /priv/static and I delete everything that was created there.
Finally, I copied the index.html file to /web/templates/layout/app.html.eex and run mix phoenix.server.
When I visit the page, I see that all of the static assets that are in a subfolder called /lib do not load. For example, the page gets a 404 for
http://localhost:4000/lib/js/head.min.js However the other stuff on the page loads fine. So this might be a silly question, but will Phoenix not serve static assets that are in a folder which is not named js, images, or css? The documentation for static assets implies that whatever is in that folder should be available. I didn't see any exceptions or special configuration required.
Kevin