Tuesday, 26 June 2018

Webpack-dev-server proxy requests very slow

I am using webpack-dev-server proxy:
devServer: {
        proxy: {
            '/api': {
                target: 'http://mybackedn.url',
                changeOrigin: true
            }
        }
    }

Requests take too much time. Chrome network panel shows this: enter image description here
Why this happens? How to solve this problem?


from Webpack-dev-server proxy requests very slow

No comments:

Post a Comment