We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38e0184 commit 60a2b83Copy full SHA for 60a2b83
config.js
@@ -2,12 +2,12 @@ const isProduction = process.env.NODE_ENV === 'production';
2
const config = {
3
DEV_PORT: 5656,
4
API_BASE_URL: isProduction
5
- ? 'https://localhost:5656'
+ ? 'http://localhost:5656'
6
: 'http://localhost:5656',
7
// Note, here is where you need to change if you are hosting on a differnt place.
8
// : 'http://localhost:8080',
9
API_BASE_URL2: isProduction
10
11
: 'http://localhost:8080'
12
};
13
module.exports = config;
0 commit comments