Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions config/e2e.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import Config

config :logger, :level, :error

config :phoenix_live_view, :root_tag_attribute, "phx-r"
5 changes: 3 additions & 2 deletions lib/mix/tasks/compile/phoenix_live_view.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ defmodule Mix.Tasks.Compile.PhoenixLiveView do
@moduledoc """
A LiveView compiler for HEEx macro components.

Right now, only `Phoenix.LiveView.ColocatedHook` and `Phoenix.LiveView.ColocatedJS`
are handled.
Right now, only `Phoenix.LiveView.ColocatedHook`, `Phoenix.LiveView.ColocatedJS`,
and `Phoenix.LiveView.ColocatedCSS` are handled.

You must add it to your `mix.exs` as:

Expand All @@ -30,5 +30,6 @@ defmodule Mix.Tasks.Compile.PhoenixLiveView do

defp compile do
Phoenix.LiveView.ColocatedJS.compile()
Phoenix.LiveView.ColocatedCSS.compile()
end
end
Loading