我有一个针对此问题的测试回购(Link)
我认为本地化文件存在问题。我使用react-intl。
Dev版本运行良好。
什么是 1.bundle.js ?我认为这是本地化文件。 (some info)。我怎么解决它?
答案 0 :(得分:0)
问题出在生产配置中。我忘记了publicPath设置。
...
output: {
path: path.join(__dirname, 'production/public/'),
filename: 'bundle.js',
publicPath: '/' // this will make sure that all statics are hit at '/' route
},
...
提取请求link