Guest User

Untitled

a guest
Feb 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. plugins: [
  2. new webpack.optimize.CommonsChunkPlugin({
  3. name: ['app', 'vendor', 'polyfills']
  4. }),
  5. new HtmlWebpackPlugin({
  6. template: 'config/index.html'
  7. }),
  8. // minifies our code
  9. new webpack.optimize.UglifyJsPlugin({
  10. beautify: false,
  11. comments: false,
  12. compress: {
  13. screw_ie8: true,
  14. warnings: false
  15. },
  16. mangle: {
  17. keep_fnames: true,
  18. screw_i8: true
  19. }
  20. }),
  21. new webpack.DefinePlugin({
  22. 'process.env': {
  23. 'ENV': JSON.stringify(ENV)
  24. }
  25. })
  26. ]
Add Comment
Please, Sign In to add comment