React routing, path not working, bundle not found

前端 未结 3 1677
再見小時候
再見小時候 2021-01-21 11:48

The following route works great and displays the AdministratePage component:

 

Howe

3条回答
  •  感动是毒
    2021-01-21 12:39

    Slash looks useless here

    filename: '/bundle.js'
    

    Also try to define publicPath

    output: {
      filename: 'bundle.js',
      path: path.resolve('dist'),
      publicPath: '/',
    },
    

    https://webpack.js.org/guides/public-path/

提交回复
热议问题