Created
December 7, 2017 18:45
-
-
Save johhansantana/3475844411f705b6dcea36f3545831dd to your computer and use it in GitHub Desktop.
disable uglify in nextjs webpack config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.plugins = config.plugins.filter(plugin => { | |
return plugin.constructor.name !== 'UglifyJsPlugin'; | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment