mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-06 16:03:18 +00:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
module.exports = {
|
|
test: /\.js$/,
|
|
// include react-intl because transform-react-remove-prop-types needs to apply to it
|
|
exclude: /node_modules\/(?!react-intl)/,
|
|
loader: 'babel-loader',
|
|
options: {
|
|
forceEnv: process.env.NODE_ENV || 'development',
|
|
},
|
|
};
|