Skip to main content

examples/vanilla/lib/vanilla_example/web/endpoint.ex

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