config.prod.js 262 B

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