config.prod.js 264 B

1234567891011121314151617
  1. 'use strict';
  2. module.exports = () => {
  3. const config = exports = {};
  4. config.logger = {
  5. // level: 'DEBUG',
  6. // consoleLevel: 'DEBUG',
  7. };
  8. // mongoose config
  9. config.mongoose = {
  10. url: 'mongodb://127.0.0.1:27018/smart',
  11. };
  12. return config;
  13. };