defmodule VanillaExample.Web.Endpoint do use Phoenix.Endpoint, otp_app: :vanilla_example plug(Plug.Static, at: "/", from: :vanilla_example, gzip: false, only: VanillaExample.Web.static_paths() ) plug(VanillaExample.Web.Router) end