原因:
devServer里面没有配置historyApiFallback
解决方法:
const devServer = { port: 8000, host: '0.0.0.0', historyApiFallback:{ index:'/index.html' }, overlay: { errors: true, }, hot: true }
原因:
devServer里面没有配置historyApiFallback
解决方法:
const devServer = { port: 8000, host: '0.0.0.0', historyApiFallback:{ index:'/index.html' }, overlay: { errors: true, }, hot: true }