config.prod.js 263 B

12345678910111213141516171819
  1. 'use strict';
  2. module.exports = () => {
  3. const config = exports = {};
  4. // add your config here
  5. config.cluster = {
  6. listen: {
  7. port: 8000,
  8. },
  9. };
  10. config.logger = {
  11. // level: 'DEBUG',
  12. // consoleLevel: 'DEBUG',
  13. };
  14. return config;
  15. };