|
@@ -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 || []);
|