Files: 8d668726e7d11fcdfc803f3c47ed305680c7194f / config / index.js
462 bytesRaw
1 | const join = require('path').join |
2 | const env = process.env |
3 | const nodeEnv = env.NODE_ENV |
4 | |
5 | module.exports = { |
6 | render: { |
7 | url: { |
8 | protocol: 'http:', |
9 | hostname: 'localhost', |
10 | port: 5000 |
11 | } |
12 | }, |
13 | static: { |
14 | url: { |
15 | protocol: 'http:', |
16 | hostname: 'localhost', |
17 | port: 5001 |
18 | }, |
19 | root: join(__dirname, '..', 'build') |
20 | }, |
21 | api: { |
22 | url: { |
23 | protocol: 'http:', |
24 | hostname: 'localhost', |
25 | port: 5002 |
26 | } |
27 | } |
28 | } |
29 |
Built with git-ssb-web