18 lines
288 B
JavaScript
18 lines
288 B
JavaScript
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: '',
|
|
},
|
|
|
|
});
|