config.js
405 Bytes
/**
* config
* Created by lintry on 2018/1/9.
*/
const customize = require('kml-customize');
const configure = customize({
"system": {
"bind_port": 8200,
},
"md": {
"base_path": {},
"default_md": "readme.md",
"theme": "metro-lake",
"toc": true
},
});
//绑定到全局变量
global.config = global.config = configure;
module.exports = configure;