mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-11-10 18:50:52 +03:00
10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
module.exports = {
|
|
hmrPort: parseInt(process.env.PORT, 10) + 1 || 3001,
|
|
hmrHost: process.env.HOST || '127.0.0.1',
|
|
appHost: '0.0.0.0',
|
|
port: { development: process.env.PORT, production: 8080 },
|
|
assetsPrefix: '/rstatic',
|
|
webpackPrefix: '/rstatic/dist/',
|
|
appPrefix: '/rapp',
|
|
};
|