Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.23 KB

advanced-options-luigi-client.md

File metadata and controls

40 lines (34 loc) · 1.23 KB

Advanced configuration options

Disable Luigi Core browser history handling

By default, Luigi Client navigation does not manipulate the browser history. Luigi Core handles the browser history by design. If there is a need to disable the history handling by Luigi Core, you can add an attribute to the head-tag in the index.html of the Luigi Client micro frontend. For example:

<!DOCTYPE html>
<html>
  <head disable-luigi-history-handling="true"> </head>
  <body></body>
</html>

Disable Luigi Core runtime error handling

By default, Luigi Client listens to runtime errors and sends the error event properties to Luigi Core. If a navigation node has configured a property called runTimeErrorHandler, you have the possibility to handle errors on the Luigi Core level. For example:

<!DOCTYPE html>
<html>
  <head disable-luigi-runtime-error-handling="true"> </head>
  <body></body>
</html>