MaiXinRong 1 tahun lalu
induk
melakukan
d19778d91c
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      app.js

+ 1 - 1
app.js

@@ -86,7 +86,7 @@ module.exports = app => {
         app.jsFiles[c] = {};
         for (const a in controller) {
             const action = controller[a];
-            if (app.config.min && action.mergeFiles && action.mergeFile.length > 0) {
+            if (app.config.min && action.mergeFiles && action.mergeFiles.length > 0) {
                 app.jsFiles[c][a] = action.files.concat([JsFiles.webPath + action.mergeFile + '.' + app.config.version + '.min.js']);
             } else {
                 app.jsFiles[c][a] = action.files.concat(action.mergeFiles || []);