o2team/athena2

app.config.js 的 moduleList 修改建议

leeenx opened this issue · 0 comments

在使用过程中发现,app.config.js 文件下的 「muduleList」项仍然采用 athena1 的方式,把所有的模块放在一行,这不利于团队Git管理。希望一个模块占一行,如下:

moduleList: ['common','m1'],

改成:

moduleList: [
    'common',
    'm1', 
],