Skip to content

Commit f72562c

Browse files
camdagr8Cam Tullos
and
Cam Tullos
authored
Changed server value from localhost to 127.0.0.1 (#194)
Co-authored-by: Cam Tullos <[email protected]>
1 parent cd342b2 commit f72562c

File tree

3 files changed

+291
-731
lines changed

3 files changed

+291
-731
lines changed

.core/gulp.tasks.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const reactium = (gulp, config, webpackConfig) => {
130130
};
131131

132132
const serve = ({ open } = { open: config.open }) => done => {
133-
const proxy = `localhost:${config.port.proxy}`;
133+
const proxy = `127.0.0.1:${config.port.proxy}`;
134134

135135
// monkey-path opnWrapper for linux support
136136
const open = require('open');
@@ -173,7 +173,7 @@ const reactium = (gulp, config, webpackConfig) => {
173173
setTimeout(resolve, config.serverRetryDelay),
174174
)
175175
.then(() => {
176-
const proxy = `localhost:${config.port.proxy}`;
176+
const proxy = `127.0.0.1:${config.port.proxy}`;
177177
return axios.get(`http://${proxy}`);
178178
})
179179
.then(() => {

0 commit comments

Comments
 (0)