From 7adfb6c1c0d1276fc212184437458a44648cd0f5 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 19 Jun 2023 17:05:21 +0300 Subject: [PATCH] fix --- js/template-bundler/template-bundler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/template-bundler/template-bundler.js b/js/template-bundler/template-bundler.js index 86035cedb9..d9b2452e90 100644 --- a/js/template-bundler/template-bundler.js +++ b/js/template-bundler/template-bundler.js @@ -39,7 +39,7 @@ class TemplateBundler { * }} config */ constructor(config) { - this.dirs = this.dirs ?? ['client/res/templates']; + this.dirs = config.dirs ?? ['client/res/templates']; this.dest = config.dest ?? 'client/lib/templates.tpl'; this.clientDir = config.clientDir ?? 'client'; }