Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
205 B

  1. const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
  2. module.exports = {
  3. entry: './src/js/index.js',
  4. output: {
  5. filename: 'dest/js/app.js'
  6. },
  7. plugins: [
  8. new UglifyJsPlugin()
  9. ]
  10. };