diff --git a/firebird-ng/src/app/app.routes.ts b/firebird-ng/src/app/app.routes.ts index af9ceda..da96e7d 100644 --- a/firebird-ng/src/app/app.routes.ts +++ b/firebird-ng/src/app/app.routes.ts @@ -4,14 +4,15 @@ import {FileBrowserComponent} from "./file-browser/file-browser.component"; import {InputConfigComponent} from "./input-config/input-config.component"; export const routes: Routes = [ - { path: '', redirectTo: '/display', pathMatch: 'full' }, + // { path: '', redirectTo: '/display', pathMatch: 'full' }, { path: 'config', component: InputConfigComponent }, - { - path: 'display', - loadComponent: () => import('./main-display/main-display.component').then(m => m.MainDisplayComponent) - }, + { path: 'files', loadComponent: () => import('./file-browser/file-browser.component').then(m => m.FileBrowserComponent) }, + { + path: '', + loadComponent: () => import('./main-display/main-display.component').then(m => m.MainDisplayComponent) + }, ];