Current section

Files

Jump to
live_view_native lib live_view_native platforms html.ex
Raw

lib/live_view_native/platforms/html.ex

defmodule LiveViewNative.Platforms.HTML do
@moduledoc false
defstruct []
defimpl LiveViewNativePlatform.Kit do
def compile(_struct) do
LiveViewNativePlatform.Env.define(:html,
tag_handler: Phoenix.LiveView.HTMLEngine,
template_extension: ".html.heex",
template_namespace: LiveViewNative.HTML,
otp_app: :live_view_native
)
end
end
end