zhongming955
Results
1
comments of
zhongming955
You can try writing a Webpack plugin,like this: ``` compiler.hooks.thisCompilation.tap(this.PLUGIN_NAME, (compilation, { normalModuleFactory }) => { normalModuleFactory.hooks.afterResolve.tap(this.PLUGIN_NAME, ({ context, request }) => { if (this.cropShared.includes(request)) { return false } })...