Interface QuteDebugConfig


public interface QuteDebugConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Enables or disables the Qute debug mode.
  • Method Details

    • enabled

      @WithDefault("true") boolean enabled()
      Enables or disables the Qute debug mode. This feature is experimental.

      When enabled, Qute templates can be debugged directly at runtime. This includes the ability to:

      • Set breakpoints inside templates
      • Inspect the stack trace of visited template nodes during rendering
      • Evaluate expressions in the current Qute context

      This mode is intended for development and troubleshooting purposes.

      Default value: true

      Example configuration:

       quarkus.qute.debug.enabled = false
       
      Returns:
      true if Qute debug mode is active, false otherwise.