反应路由,路径不起作用,找不到捆绑
以下路线非常有效,并显示AdministratePage组件:
<Route path="/admin" component={AdministratePage} />
但是这条路线:
<Route path="/admin/all" component={AdministratePage} />
…导致以下错误:
http:// localhost:8080 / admin /
bundle.js 404(未找到)
我哪里出错了?我是否可以使用任何路径?
我正在使用react-router-dom 4.1.2。
我的webpack.config.js:
output: { path: path.resolve('dist'),
filename: '/bundle.js'
},
我的index.html:
<div id="app"></div>
谢谢。
回答:
斜线在这里看起来没用
filename: '/bundle.js'
也尝试定义publicPath
output: { filename: 'bundle.js',
path: path.resolve('dist'),
publicPath: '/',
},
https://webpack.js.org/guides/public-
path/
以上是 反应路由,路径不起作用,找不到捆绑 的全部内容, 来源链接: utcz.com/qa/399723.html