ignore-loader
To ignore certain files when building webpack application.
Install
$ npm install --save-dev ignore-loader
.css
)
Usage (Ignoring all - In
webpack.config.js
moduleexports = // other configurations module: loaders: test: /\.css$/ loader: 'ignore-loader' ;