Skip to content

Commit f2632c7

Browse files
fix initial state of config
1 parent 4d403a3 commit f2632c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/compile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function parseConf(conf) {
5353
global: 'jQuery',
5454
url: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js'
5555
};
56-
const disableLegacyTemplates = Boolean(conf.disableLegacyTemplates ?? true);
56+
const disableLegacyTemplates = Boolean(conf.disableLegacyTemplates ?? false);
5757
const transformedTemplates = transformTemplates(conf.templates);
5858
const templates = disableLegacyTemplates
5959
? {

0 commit comments

Comments
 (0)