Files
inpx-web/server/config/production.js
2022-12-04 17:38:36 +07:00

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: '',
},
});