UNPKG

react-image-compressor

Version:
40 lines (32 loc) 569 B
var webpack = require('webpack'); require('es6-promise').polyfill(); module.exports = { entry: './src/js/components/app.js', output: { path: __dirname + '/build', publicPath: '/build/', filename: 'build.js' }, devServer: { port: 8008 }, module: { loaders: [ { test: /\.js$/, loader: 'babel' }, { test: /\.css$/, loaders: ['style','css'] } ] }, plugins: [ new webpack.DefinePlugin({ 'process.env': { 'NODE_ENV': '"production"' } }) ] };