add error route using the app-error element

This commit is contained in:
Jacob Overgaard
2024-04-23 08:40:55 +02:00
parent 18af383273
commit a15dc97a4c

View File

@@ -50,6 +50,10 @@ export class UmbAppElement extends UmbLitElement {
bypassAuth = false;
private _routes: UmbRoute[] = [
{
path: 'error',
component: () => import('./app-error.element.js'),
},
{
path: 'install',
component: () => import('../installer/installer.element.js'),