describe why /customize/www/ is served

This commit is contained in:
ansuz 2022-07-25 16:40:29 +05:30
parent 6c73e05d19
commit db59cc081d

View File

@ -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'));