From: unarist Date: Sat, 24 Jun 2017 12:03:52 +0000 (+0900) Subject: Fix webpack config for Windows (#3926) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=138e5a0b1ebc7d21c1f2a73c9742cef600c5af40;p=mastodon.git Fix webpack config for Windows (#3926) --- diff --git a/config/webpack/loaders/babel.js b/config/webpack/loaders/babel.js index c23aa9375..ae65db9eb 100644 --- a/config/webpack/loaders/babel.js +++ b/config/webpack/loaders/babel.js @@ -1,7 +1,7 @@ module.exports = { test: /\.js$/, // 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', options: { forceEnv: process.env.NODE_ENV || 'development',