Created
July 20, 2018 11:22
-
-
Save arqex/3c6fd30ba0c807a71020e7cf80133fe5 to your computer and use it in GitHub Desktop.
webpack clean plugin
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
const Clean = require('clean-webpack-plugin') | |
// ... | |
{ | |
// ... | |
plugins: [ | |
new Clean('build/*.*', {/* options */}) | |
] | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment