plugin.js 253 B

1234567891011121314151617
  1. 'use strict';
  2. /** @type Egg.EggPlugin */
  3. module.exports = {
  4. // had enabled by egg
  5. // static: {
  6. // enable: true,
  7. // }
  8. mongoose: {
  9. enable: true,
  10. package: 'egg-mongoose',
  11. },
  12. cors: {
  13. enable: true,
  14. package: 'egg-cors',
  15. }
  16. };