I\'m using handlebars.js and I want to start precompiling everything, but I can\'t seem to find a way to precompile the partials. The majority of my templates are actually parti
for(let [name, template] of Object.entries(handlebars.partials)) { handlebars.partials[name] = handlebars.compile(template); }