diff --git a/src/server.js b/src/server.js index 39f0772..282610a 100644 --- a/src/server.js +++ b/src/server.js @@ -371,7 +371,10 @@ function start(opts) { // ------------------------------------ // serve web presentations - app.use('/assets', express.static(path.join(__dirname, '../public/resources'))); + app.use( + '/assets', + express.static(path.join(__dirname, '../public/resources')), + ); const templates = path.join(__dirname, '../public/templates'); const serveTemplate = (urlPath, template, dataGetter) => {