웹팩 공식 샵 을 방문하여 의류를 구매하시고 웹팩을 후원해주세요!   모든 후원의 진행사항은 웹팩의 오픈 챌린지 페이지 에서 확인하실 수 있습니다.

ag-grid is proud to partner with webpack

IgnorePlugin

Prevent generation of modules for import or require calls matching the following regular expressions:

  • requestRegExp A RegExp to test the request against.
  • contextRegExp (optional) A RegExp to test the context (directory) against.
new webpack.IgnorePlugin(requestRegExp, [contextRegExp])

The following examples demonstrate a few ways this plugin can be used.

Ignore Moment Locales

As of moment 2.18, all locales are bundled together with the core library (see this GitHub issue). You can use the IgnorePlugin to stop any locale being bundled with moment:

new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)

Contributors