Current section
Files
Jump to
Current section
Files
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