routes.gen.js spreads `.toplevel` for every plugin uniformly, but only a few own full-screen routes, so Rollup warned on eleven of them every build. The `|| []` guard was always doing its job - the warning was noise, and noise in a build log is where a real warning goes to hide.
33 lines
893 B
JavaScript
33 lines
893 B
JavaScript
/**
|
|
* Applications routes (core feature)
|
|
*/
|
|
export default [
|
|
{
|
|
path: 'applications',
|
|
name: 'applications',
|
|
component: () => import('./views/ApplicationsList.vue')
|
|
},
|
|
{
|
|
path: 'applications/new',
|
|
name: 'application-new',
|
|
component: () => import('./views/ApplicationForm.vue'),
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: 'applications/:id',
|
|
name: 'application-detail',
|
|
component: () => import('./views/ApplicationDetail.vue')
|
|
},
|
|
{
|
|
path: 'applications/:id/edit',
|
|
name: 'application-edit',
|
|
component: () => import('./views/ApplicationForm.vue'),
|
|
meta: { requiresAuth: true }
|
|
}
|
|
]
|
|
|
|
// No full-screen routes: every view in this plugin renders inside
|
|
// AppLayout. Declared so routes.gen.js can read `.toplevel` off the module
|
|
// without Rollup warning about a missing export.
|
|
export const toplevel = []
|