Explorar el Código

Disable minification in npm run watch

bubble
Kyle Shockey hace 7 años
padre
commit
be293de220
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: DC20D559FFBC0D36
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      webpack-watch.config.js

+ 5
- 0
webpack-watch.config.js Ver fichero

@@ -1,3 +1,8 @@
const config = require("./webpack-dist.config.js")

config.plugins = config.plugins.filter(plugin => {
// Disable minification
return plugin.constructor.name !== "UglifyJsPlugin"
})

module.exports = config

Cargando…
Cancelar
Guardar