12345678910111213141516171819 |
- 'use strict';
- module.exports = () => {
- const config = exports = {};
- // add your config here
- config.cluster = {
- listen: {
- port: 8000,
- },
- };
- config.logger = {
- // level: 'DEBUG',
- // consoleLevel: 'DEBUG',
- };
- return config;
- };
|