[![npm][npm]][npm-url] [![node][node]][node-url] [![deps][deps]][deps-url] [![tests][tests]][tests-url] [![chat][chat]][chat-url]
A webpack loader that returns an empty module.
One use for this loader is to silence modules imported by a dependency. Say, for example, your project relies on an ES6 library that imports a polyfill you don't need, so removing it will cause no loss in functionality.
This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.
To begin, you'll need to install null-loader:
$ npm install null-loader --save-dev
Then add the loader to your webpack config. For example:
// webpack.config.js
const path = require('path');
module.exports = {
  module: {
    rules: [
      {
        // Test for a polyfill (or any file) and it won't be included in your
        // bundle
        test: path.resolve(__dirname, 'node_modules/library/polyfill.js'),
        use: 'null-loader'
      }
    ]
  }
}
 And run webpack via your preferred method.
Please take a moment to read our contributing guidelines if you haven't yet done so.
    © JS Foundation and other contributors
Licensed under the Creative Commons Attribution License 4.0.
    https://webpack.js.org/loaders/null-loader