0

我有一个针对这个问题的测试仓库(链接

我认为这是本地化文件的问题。我使用反应国际。

开发版效果很好。

问题是:

  • 创建生产构建
  • 运行生产服务器
  • 打开应用程序http://localhost:3001/activities
  • 刷新页面(正常工作)
  • 点击链接到 id 1(正常工作)
  • 刷新页面(不起作用,因为1.bundle.js文件未正确发送,css 也是)

1.bundle.js是什么?我认为这是本地化文件。(一些信息)。我该如何解决?

4

1 回答 1

0

问题出在生产配置中。我忘记了 publicPath 设置。

...
output: {
  path: path.join(__dirname, 'production/public/'),
  filename: 'bundle.js',
  publicPath: '/' // this will make sure that all statics are hit at '/' route
},
...

拉取请求链接

于 2016-10-11T08:52:38.260 回答