We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa92d47 commit e290951Copy full SHA for e290951
view/frontend/web/js/internals/template-engine.js
@@ -3,7 +3,10 @@ define([], function () {
3
const ENGINE_TYPE_MUSTACHE = 'mustache';
4
5
return {
6
- getSelectedEngine: () => ENGINE_TYPE_HOGAN, // override via mixin
+ ENGINE_TYPE_HOGAN,
7
+ ENGINE_TYPE_MUSTACHE,
8
+
9
+ getSelectedEngine: () => ENGINE_TYPE_MUSTACHE, // override via mixin
10
11
processTemplate: async function (template, data, measure = false) {
12
const adapter = await this.getEngineAdapter(this.getSelectedEngine());
0 commit comments