diff options
Diffstat (limited to 'modern/src/setupProxy.js')
-rw-r--r-- | modern/src/setupProxy.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modern/src/setupProxy.js b/modern/src/setupProxy.js index 71312d50..c16655c8 100644 --- a/modern/src/setupProxy.js +++ b/modern/src/setupProxy.js @@ -1,6 +1,6 @@ const proxy = require('http-proxy-middleware'); -module.exports = function(app) { - app.use(proxy('/api/socket', { target: 'ws://localhost:8082', ws: true })); - app.use(proxy('/api', { target: 'http://localhost:8082' })); +module.exports = function (app) { + app.use(proxy('/api/socket', { target: 'ws://' + process.env.REACT_APP_URL_NAME, ws: true })); + app.use(proxy('/api', { target: 'http://' + process.env.REACT_APP_URL_NAME })); }; |