production.js 270 B

12345678910111213141516
  1. const path = require('path');
  2. const base = require('./base');
  3. const execDir = path.dirname(process.execPath);
  4. module.exports = Object.assign({}, base, {
  5. branch: 'production',
  6. execDir,
  7. server: {
  8. host: '0.0.0.0',
  9. port: '12380',
  10. },
  11. });