dodo / node-slug

slugifies even utf-8 chars!
MIT License
1.08k stars 92 forks source link

How to ignore unicode/category/So in Webpack config ? #62

Closed gnepud closed 8 years ago

gnepud commented 8 years ago

I found the solution, just add IgnorePlugin to Webpack config like it: new webpack.IgnorePlugin(/unicode\/category\/So/)

thank

sebastiaanluca commented 7 years ago

Exactly what I was looking for, thanks!

bertho-zero commented 5 years ago
new webpack.IgnorePlugin( {
  resourceRegExp: /unicode\/category\/So/,
  contextRegExp: /node_modules\/slug$/
} )