diff --git a/services/web/app/src/infrastructure/ExpressLocals.js b/services/web/app/src/infrastructure/ExpressLocals.js index 0e7adacde6..5ba7760c0e 100644 --- a/services/web/app/src/infrastructure/ExpressLocals.js +++ b/services/web/app/src/infrastructure/ExpressLocals.js @@ -340,12 +340,12 @@ module.exports = function(webRouter, privateApiRouter, publicApiRouter) { { name: 'Default', val: '', - path: res.locals.buildCssPath(null, { hashedPath: true }) + path: res.locals.buildCssPath() }, { name: 'Light', val: 'light-', - path: res.locals.buildCssPath('light-', { hashedPath: true }) + path: res.locals.buildCssPath('light-') } ] } diff --git a/services/web/app/views/general/400.pug b/services/web/app/views/general/400.pug index fb5a4e1d57..f92a816eaf 100644 --- a/services/web/app/views/general/400.pug +++ b/services/web/app/views/general/400.pug @@ -4,7 +4,7 @@ html.full-height(itemscope, itemtype='http://schema.org/Product') title Something went wrong link(rel="icon", href="/favicon.ico") if buildCssPath - link(rel="stylesheet", href=buildCssPath(null, { hashedPath: true })) + link(rel="stylesheet", href=buildCssPath()) body.full-height .content.content-alt.full-height diff --git a/services/web/app/views/general/500.pug b/services/web/app/views/general/500.pug index 7b23626062..7523e58277 100644 --- a/services/web/app/views/general/500.pug +++ b/services/web/app/views/general/500.pug @@ -4,7 +4,7 @@ html.full-height(itemscope, itemtype='http://schema.org/Product') title Something went wrong link(rel="icon", href="/favicon.ico") if buildCssPath - link(rel="stylesheet", href=buildCssPath(null, { hashedPath: true })) + link(rel="stylesheet", href=buildCssPath()) body.full-height .content.content-alt.full-height