diff --git a/server/app.js b/server/app.js index 3a0031609..f8bd753e1 100644 --- a/server/app.js +++ b/server/app.js @@ -434,6 +434,11 @@ if(isLocalEnvironment){ }); } +//Vault Page +app.get('/vault', asyncHandler(async(req, res, next)=>{ + return next(); +})); + //Send rendered page app.use(asyncHandler(async (req, res, next)=>{ if (!req.route) return res.redirect('/'); // Catch-all for invalid routes