mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 01:38:43 +00:00
fix: webpack-dev-server proxy hostname (#4515)
Switching the hostname from 'localhost' to the ipv6 '[::1]' fixes the dev server proxy https://github.com/webpack/webpack-dev-server/issues/793#issuecomment-316650146 Signed-off-by: Tim Etchells <tetchell@redhat.com>
This commit is contained in:
parent
9f2eab665b
commit
8eb3306064
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ const path = require('path');
|
|||
const isProd = process.env.NODE_ENV === 'production';
|
||||
|
||||
const proxyConf = {
|
||||
'target': process.env.ARGOCD_API_URL || 'http://localhost:8080',
|
||||
'target': process.env.ARGOCD_API_URL || 'http://[::1]:8080',
|
||||
'secure': false,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue