diff options
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/web/boot.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/web/boot.js b/src/server/web/boot.js index 7a41ae2555..a3a0685669 100644 --- a/src/server/web/boot.js +++ b/src/server/web/boot.js @@ -109,7 +109,7 @@ if (customCss && customCss.length > 0) { const style = document.createElement('style'); style.innerHTML = customCss; - head.appendChild(style); + document.head.appendChild(style); } // eslint-disable-next-line no-inner-declarations |