Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 340 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 340 Bytes

ignore-loader

To ignore certain files when building webpack application.

Install

$ npm install --save-dev ignore-loader

Usage (Ignoring all .css)

  • In webpack.config.js
module.exports = {
  // other configurations
  module: {
    loaders: [
      { test: /\.css$/, loader: 'ignore-loader' }
    ]
  }
};