UNPKG

react-simple-image-editor

Version:

A simple image editor for react

22 lines (20 loc) 480 B
var path = require('path'); module.exports = { mode: 'production', entry: './src/index.js', output: { path: path.resolve('build'), filename: 'index.js', libraryTarget: 'commonjs2', }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' }, { test: /\.css$/, loader: 'style-loader!css-loader', }, ], }, externals: { react: 'commonjs react', 'react-dom': 'commonjs react-dom' }, };