Load handlebars without script-loader

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-06-06 17:49:21 +02:00
parent a98d184f2c
commit 1150c72fa7
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
2 changed files with 2 additions and 7 deletions

View file

@ -18,6 +18,7 @@ import markdownitContainer from 'markdown-it-container'
import Plugin from 'markdown-it-regexp'
import mermaid from 'mermaid'
import handlebars from 'handlebars'
require('prismjs/themes/prism.css')
require('prismjs/components/prism-wiki')
@ -666,7 +667,7 @@ export function exportToHTML (view) {
// generate html via template
$.get(`${serverurl}/build/html.min.css`, css => {
$.get(`${serverurl}/views/html.hbs`, data => {
const template = window.Handlebars.compile(data)
const template = handlebars.compile(data)
const context = {
url: serverurl,
title,