diff options
Diffstat (limited to 'src/client/app/auth/script.ts')
| -rw-r--r-- | src/client/app/auth/script.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/auth/script.ts b/src/client/app/auth/script.ts index 3d916e8d79..9dc6e57333 100644 --- a/src/client/app/auth/script.ts +++ b/src/client/app/auth/script.ts @@ -9,6 +9,7 @@ import './style.styl'; import init from '../init'; import Index from './views/index.vue'; +import NotFound from '../common/views/pages/404.vue'; /** * init @@ -20,6 +21,7 @@ init(launch => { base: '/auth/', routes: [ { path: '/:token', component: Index }, + { path: '*', component: NotFound } ] }); |