module.exports = function()

in src/setupProxy.js [3:9]


module.exports = function (app) {
    app.use('/auth/**', 
        createProxyMiddleware({ 
            target: 'http://localhost:5000'
        })
    );
};