Skip to content

Commit 9854b03

Browse files
deepanchalBradenM
authored andcommitted
feat(route): add route for site maintenance
1 parent 10de537 commit 9854b03

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/pages/unauthenticated/routes.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import PreliminaryAssessment from './PreliminaryAssessment.vue';
44
import PrintToken from './PrintToken.vue';
55
import ResetPassword from './ResetPassword';
66
import PewPew from './PewPew';
7+
import DownForMaintenance from './DownForMaintenance.vue';
78

89
const routes = [
910
{
@@ -42,6 +43,16 @@ const routes = [
4243
name: 'nav.pew',
4344
meta: { layout: 'unauthenticated', noAuth: true },
4445
},
46+
{
47+
path: '/maintenance',
48+
// component: () =>
49+
// import(
50+
// /* webpackChunkName: "down-for-maintenance" */ './DownForMaintenance.vue'
51+
// ),
52+
component: DownForMaintenance,
53+
name: 'nav.site_maintenance',
54+
meta: { layout: 'unauthenticated', noAuth: true },
55+
},
4556
];
4657

4758
export default routes;

0 commit comments

Comments
 (0)