Skip to content Skip to sidebar Skip to footer

How To Exclude Files From Loader

I have the next config for webpack loaders: module: { loaders: [{ test: /\.js$/, include: rootDir + '/src', loader: 'babel?presets[]=es2015' }, { t

Solution 1:

You're on the right track. Create two loader configurations, one for 'somefile', and one for the rest of your CSS files that excludes 'somefile':

module: {
  loaders: [
  ...
  {
    test: 'somefile',
    loader: 'style!css'
  }, {
    test: /\.css$/,
    loader: 'style!css!autoprefixer?browsers=last 2 versions',
    exclude: 'somefile'
  },
  ...
  ]
}

Post a Comment for "How To Exclude Files From Loader"