1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-14 06:38:39 +09:00
YuruToot/config/webpack/loaders/babel.js

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',
},
};