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>
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>