React-router v4 - cannot GET *url*

前端 未结 8 665
梦如初夏
梦如初夏 2020-12-07 14:04

I started to use react-router v4. I have a simple in my app.js with some navigation links (see code below). If I navigate to localhost/voca

8条回答
  •  没有蜡笔的小新
    2020-12-07 14:47

    I also had success with this by adding ... historyApiFallback: true

    devServer: {
        contentBase: path.join(__dirname, "public"),
        watchContentBase: true,
        publicPath: "/dist/",
        historyApiFallback: true
    }
    

提交回复
热议问题