Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
// for babel-plugin-webpack-loaders
require('babel-register');
const devConfigs = require('./webpack.config.development');
module.exports = {
output: {
libraryTarget: 'commonjs2'
},
module: {
loaders: devConfigs.module.loaders.slice(1) // remove babel-loader
}
};