1234567891011121314151617 |
- const path = require('path');
- const base = require('./base');
- const execDir = path.dirname(process.execPath);
- module.exports = Object.assign({}, base, {
- branch: 'production',
- execDir,
- server: {
- host: '0.0.0.0',
- port: '12380',
- root: '',
- },
- });
|