Staging #1066

Merged
jessopb merged 55 commits from staging into release 2020-05-16 17:08:51 +02:00
3 changed files with 5 additions and 0 deletions
Showing only changes of commit f42c72f46b - Show all commits

View file

@ -62,6 +62,11 @@ function Server () {
// Support per-request http-context
app.use(httpContext.middleware);
// 'express.static' to serve static files from site/public directory
const sitePublicPath = Path.resolve(process.cwd(), 'site/public');
app.use(express.static(sitePublicPath));
logger.info(`serving static files from site static path at ${sitePublicPath}.`);
// 'express.static' to serve static files from public directory
const publicPath = Path.resolve(process.cwd(), 'public');
app.use(express.static(publicPath));

0
site/public/.gitkeep Normal file
View file

View file