production.js 288 B

1234567891011121314151617
  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. root: '',
  11. },
  12. });