From 03c14e584714a6a51cbbc0a543a21580d7356578 Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Thu, 5 Sep 2024 11:24:59 -0500 Subject: [PATCH] adds meta tags for the Vault page So they show up when sharing the link in Discord or wherever. --- server/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/app.js b/server/app.js index 02075d31d..beb0b249c 100644 --- a/server/app.js +++ b/server/app.js @@ -436,6 +436,10 @@ if(isLocalEnvironment){ //Vault Page app.get('/vault', asyncHandler(async(req, res, next)=>{ + req.ogMeta = { ...defaultMetaTags, + title : 'The Vault', + description : 'Search for Brews' + }; return next(); }));