2017-01-18 15:46:57 +08:00

43 lines
541 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
const path = require('path');
module.exports = {
// 插件简写
a: false,
a1: true,
// 标准写法
b: {
enable: true
},
// 会自动补全信息
c: {},
// 别名app.plugins.d1
d1: {
package: 'd'
},
e: {
path: path.join(__dirname, '../plugins/e')
},
f: {
path: path.join(__dirname, '../plugins/f')
},
g: {
path: path.join(__dirname, '../plugins/g')
},
// 覆盖内置的
rds: {
enable: true,
dependencies: ['session'],
package: 'rds',
},
};