diff options
Diffstat (limited to 'src/client/app/dev/script.ts')
| -rw-r--r-- | src/client/app/dev/script.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/dev/script.ts b/src/client/app/dev/script.ts index c043813b40..33b15bfb8e 100644 --- a/src/client/app/dev/script.ts +++ b/src/client/app/dev/script.ts @@ -18,6 +18,7 @@ import Apps from './views/apps.vue'; import AppNew from './views/new-app.vue'; import App from './views/app.vue'; import ui from './views/ui.vue'; +import NotFound from '../common/views/pages/404.vue'; Vue.use(BootstrapVue); @@ -36,6 +37,7 @@ init(launch => { { path: '/apps', component: Apps }, { path: '/app/new', component: AppNew }, { path: '/app/:id', component: App }, + { path: '*', component: NotFound } ] }); |