From db59cc081daf712c23b5e97933ec9eddb38d93ae Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 25 Jul 2022 16:40:29 +0530 Subject: [PATCH] describe why /customize/www/ is served --- server.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.js b/server.js index d634c18bd..4fe20bb7e 100644 --- a/server.js +++ b/server.js @@ -148,6 +148,8 @@ app.use(function (req, res, next) { next(); }); +// serve custom app content from the customize directory +// useful for testing pages customized with opengraph data app.use(Express.static(__dirname + '/customize/www')); app.use(Express.static(__dirname + '/www'));