UNPKG

strip-debug-loader

Version:

Remove console, alert, and debugger statements from code processed by webpack

24 lines (19 loc) 401 B
# strip-debug-loader Remove debug statements from your code using webpack. Alerts and console.log() will be removed from your code. Use especially for production build. ## Usage ```javascript module.exports = { entry: './src/index.js', output: { path: __dirname, filename: 'dist/index.js' }, module: { loaders: [ { test: /\.js$/, loader: 'strip-debug' } ] } }; ```