Display debug data in Error view (Dev mode only)

This commit is contained in:
Bubka
2020-01-10 15:00:55 +01:00
parent 84a9ba4297
commit f195de07d0
3 changed files with 22 additions and 4 deletions

6
resources/js/app.js vendored
View File

@ -51,12 +51,14 @@ const router = new VueRouter({
{
path: '/404',
name: '404',
component: NotFound
component: NotFound,
props: true
},
{
path: '/error',
name: 'GenericError',
component: NotFound
component: NotFound,
props: true
},
],
});