/** * @Author HonorLee (dev@honorlee.me) * @Version 1.0 (2019-09-17) * @License MIT */ export = {} const CONFIG = { //入口文件,默认App目录 entrance:'main.js', //扩展模块 module:[ { // MVC框架模块 name:'MVC', //自动查找system/module对应名称模块 enable:true, // 配置信息,模块初始化时自动传入 option:{ root_path:'app/mvc', server_port:8080 } } ], /** * Log (file) Level: ALL | log | info | debug | warn | error * Logs will write into log/{Level}.{Date}.log */ Log_Level:'info', }; SYSTEM.CONFIG = CONFIG;