Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 417 Bytes

README.zh_CN.md

File metadata and controls

26 lines (21 loc) · 417 Bytes

edan

将传递给Application/Agent的options,同时也保存为appInfo.optionsapp.config.appOptions

使用

使用方法如下:

// config/config.${env}.js
module.exports = appInfo => {
  const config = {};
  config.something = appInfo.options.something;
  return config;
}

or

// app.js
module.exports = app => {
  console.log(app.config.appOptions);
}

License

MIT