mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 09:09:24 +02:00
Fixed #48: basic 404 error template
This commit is contained in:
parent
20812731ae
commit
f7fb0e69a3
3 changed files with 38 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
import Vue from 'vue'
|
||||
import Router from 'vue-router'
|
||||
import PageNotFound from '@/components/PageNotFound'
|
||||
import Home from '@/components/Home'
|
||||
import Login from '@/components/auth/Login'
|
||||
import Profile from '@/components/auth/Profile'
|
||||
|
@ -72,7 +73,7 @@ export default new Router({
|
|||
},
|
||||
{ path: 'import/batches/:id', name: 'library.import.batches.detail', component: BatchDetail, props: true }
|
||||
]
|
||||
}
|
||||
|
||||
},
|
||||
{ path: '*', component: PageNotFound }
|
||||
]
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue