Package io.quarkus.qute.runtime.debug
Interface QuteDebugConfig
public interface QuteDebugConfig
-
Method Summary
-
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:
trueExample configuration:
quarkus.qute.debug.enabled = false
- Returns:
trueif Qute debug mode is active,falseotherwise.
-