blob: 82478b156200cfa9a5590b4b14c17a91f94d20b0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | const environment = require('./environment')
const webpack = require('webpack')
const UglifyJsPlugin = require('uglify-js')
environment.plugins.append(
  'UglifyJs',
  new webpack.optimize.UglifyJsPlugin({
    compress: {
      warnings: false
    }
  })
)
module.exports = environment.toWebpackConfig()
 |