graphql-engine/console/hasuraconfig.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
289 B
JavaScript
Raw Normal View History

2018-06-28 07:57:37 +03:00
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',
};