chris-dyke
Results
1
comments of
chris-dyke
The solution found here - https://stackoverflow.com/questions/70469717/cant-load-a-react-app-after-starting-server Updating from ``` const proxy = require('http-proxy-middleware'); module.exports = function(app) { app.use(proxy('/proxypath', { target: '' })); }; ``` to ``` const { createProxyMiddleware }...