Skip to content
Snippets Groups Projects
Commit 68dca26a authored by unarist's avatar unarist Committed by Eugen Rochko
Browse files

Fix react-intl/locale-data import issue on production build (#3937)

Webpack seems to fail to import `react-intl/locale-data/*.js` if those
files has been proceed by babel, and this also breaks applying our translation.

Note that this won't be a problem on English locale, because react-intl
includes it as default and works fine without manually added locale-data.
Also this issue seems to only occurs on production build, but I'm not sure
about reason.
parent 1fc096ec
Branches
No related tags found
No related merge requests found
module.exports = {
test: /\.js$/,
// include react-intl because transform-react-remove-prop-types needs to apply to it
exclude: /node_modules[\/\\](?!react-intl)/,
exclude: {
test: /node_modules/,
exclude: /react-intl[\/\\](?!locale-data)/,
},
loader: 'babel-loader',
options: {
forceEnv: process.env.NODE_ENV || 'development',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment