Browse Source

Fix webpack config for Windows (#3926)

pull/4/head
unarist 6 years ago
committed by Eugen Rochko
parent
commit
138e5a0b1e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      config/webpack/loaders/babel.js

+ 1
- 1
config/webpack/loaders/babel.js View File

@ -1,7 +1,7 @@
module.exports = { module.exports = {
test: /\.js$/, test: /\.js$/,
// include react-intl because transform-react-remove-prop-types needs to apply to it // include react-intl because transform-react-remove-prop-types needs to apply to it
exclude: /node_modules\/(?!react-intl)/,
exclude: /node_modules[\/\\](?!react-intl)/,
loader: 'babel-loader', loader: 'babel-loader',
options: { options: {
forceEnv: process.env.NODE_ENV || 'development', forceEnv: process.env.NODE_ENV || 'development',

Loading…
Cancel
Save