我的反应是全新的。我正在尝试在我的项目中使用React Router。在webpack配置文件中,我更改了historyApiFallback = true仍然无法解决路由问题。我遇到“无法获取/ header”错误
const path = require('path');
module.exports = {
entry:'./src/app.js',
output:{
path:path.join(__dirname,'public'),
filename:'bundle.js'
},
module:{
rules:[
{
test:/\.js$/,
loader:'babel-loader',
exclude:/node-modules/
}
]
},
devServer: {
historyApiFallback: true
}
}
答案 0 :(得分:0)
如果您正在运行devServer,则会丢失它
LevelSwitches.Switch3