Christian-Yang / Translate-and-save

Translate and save for my self
1 stars 0 forks source link

IgnorePlugin 插件学习 #20

Open Christian-Yang opened 7 years ago

Christian-Yang commented 7 years ago

new webpack.IgnorePlugin(requestRegExp, [contextRegExp]) 【不打包】路径满足给定正则表达式的资源。 requestRegExp 测试资源请求路径的正则表达式。 contextRegExp (可选) 测试资源上下文(目录)的正则表达式。 典型用例 忽略 moment 的本地化内容 moment 2.18 会将所有本地化内容和核心功能一起打包(见该 GitHub issue)。你可使用 IgnorePlugin 在打包时忽略本地化内容: new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)