UNPKG

@thehapp/treerful-icon

Version:
19 lines (17 loc) 367 B
var path = require('path'); var webpack = require('webpack'); module.exports = { entry: ['./src/index'], output: { path: path.join(__dirname, 'dist'), filename: 'bundle.js', }, plugins: [ new webpack.optimize.UglifyJsPlugin({ compressor: { warnings: false, }, }), new webpack.optimize.OccurrenceOrderPlugin(), ], };