这是路由配置:
<Route path='/' component={CoreLayout}> <IndexRoute component={HomeView}/> <Route path='/404' component={NotFoundView}/> <Redirect from='*' to='/404'/> </Route>
这是webpack-dev-server的代理配置:
proxy: { '/service': 'http://localhost:8080' }
快速服务器侦听3000端口.
我希望发送到http://localhost:3000/service的所有请求都将转移到http://localhost:8080,但似乎react-router处理所有请求并且代理不起作用.
任何人都知道如何解决这个问题?先感谢您
>检查
Webpack Dev Server文档,您需要提供具有目标属性的对象.
> htt-proxy-middleware文档显示了匹配模式的用法.
原文链接:https://www.f2er.com/react/301055.html> htt-proxy-middleware文档显示了匹配模式的用法.
总之,我会尝试这样做:
proxy: { '/service/**': { target: 'http://localhost:8080' } }