diff options
Diffstat (limited to '')
-rw-r--r-- | lib/lsg_web/endpoint.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lsg_web/endpoint.ex b/lib/lsg_web/endpoint.ex index d8bf962..b0cf9c5 100644 --- a/lib/lsg_web/endpoint.ex +++ b/lib/lsg_web/endpoint.ex @@ -1,13 +1,13 @@ defmodule NolaWeb.Endpoint do use Sentry.PlugCapture - use Phoenix.Endpoint, otp_app: :lsg + use Phoenix.Endpoint, otp_app: :nola # Serve at "/" the static files from "priv/static" directory. # # You should set gzip to true if you are running phoenix.digest # when deploying your static files in production. plug Plug.Static, - at: "/", from: :lsg, gzip: false, + at: "/", from: :nola, gzip: false, only: ~w(assets css js fonts images favicon.ico robots.txt) # Code reloading can be explicitly enabled under the |