chore: update phoenix to version 1.8.0-rc.3

This commit is contained in:
Moritz 2025-07-03 20:44:24 +02:00
parent 5b6e5713ec
commit fb9a3cd063
Signed by: moritz
GPG key ID: 1020A035E5DD0824
28 changed files with 1769 additions and 674 deletions

View file

@ -17,25 +17,21 @@ defmodule MvWeb.Endpoint do
# Serve at "/" the static files from "priv/static" directory.
#
# You should set gzip to true if you are running phx.digest
# when deploying your static files in production.
# When code reloading is disabled (e.g., in production),
# the `gzip` option is enabled to serve compressed
# static files generated by running `phx.digest`.
plug Plug.Static,
at: "/",
from: :mv,
gzip: false,
gzip: not code_reloading?,
only: MvWeb.static_paths()
if Code.ensure_loaded?(Tidewave) do
plug Tidewave
end
# Code reloading can be explicitly enabled under the
# :code_reloader configuration of your endpoint.
if code_reloading? do
socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket
plug Phoenix.LiveReloader
plug Phoenix.CodeReloader
plug Phoenix.Ecto.CheckRepoStatus, otp_app: :mv
end
plug Phoenix.LiveDashboard.RequestLogger,