mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
/**
|
|
* 不同模式下的配置文件
|
|
* 由于每个模式下的配置可能都比较少,所以放在一个文件里
|
|
* @type {Object}
|
|
*/
|
|
module.exports = {
|
|
cli: {
|
|
use_cluster: false,
|
|
html_cache_on: false,
|
|
log_process_pid: false,
|
|
clear_require_cache: false
|
|
},
|
|
cli_debug: {
|
|
clear_require_cache: false
|
|
}
|
|
} |