ignore-loader

Webpack loader to ignore certain package on build.

3 个版本
安装
npm install ignore-loader
yarn add ignore-loader
pnpm add ignore-loader
bun add ignore-loader
README

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' }
    ]
  }
};
版本列表
0.1.2 2016-11-11
0.1.1 2015-11-05
0.1.0 2015-11-01