From d081affa382e295e5c0901a52ad5e5cb7f3ab72d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marian=20H=C3=A4hnlein?= Date: Fri, 19 Aug 2022 13:17:59 +0200 Subject: [PATCH] Move injection of custom CSS from client to server --- server/layout.js | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/server/layout.js b/server/layout.js index 0aceade7..6d2051ab 100644 --- a/server/layout.js +++ b/server/layout.js @@ -3,6 +3,10 @@ const assets = require('../common/assets'); const initScript = require('./initScript'); module.exports = function(state, body = '') { + const custom_css = state.ui.assets.custom_css !== '' + ? html`` + : '' + return html` @@ -40,16 +44,7 @@ module.exports = function(state, body = '') { type="text/css" href="${assets.get('app.css')}" /> - + ${custom_css}