MaiXinRong 1 년 전
부모
커밋
d19778d91c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 || []);