var webpack = require('webpack'); module.exports = require('./webpack.config.js'); module.exports.plugins = module.exports.plugins.concat([ new webpack.LoaderOptionsPlugin({ minimize: true, debug: false, }), ]); module.exports.optimization.minimize = true; module.exports.output.filename = 'quagga.min.js'; module.exports.output.sourceMapFilename = ''; module.exports.devtool = false;