aboutsummaryrefslogtreecommitdiffstats
path: root/config/webpack/production.js
blob: 7703f84526e5a57cff33d06a682959b7b6e2acd0 (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.set(
  'UglifyJs',
  new webpack.optimize.UglifyJsPlugin({
    compress: {
      warnings: false
    }
  })
)

module.exports = environment.toWebpackConfig()