nav tabs on admin dashboard
This commit is contained in:
6
node_modules/webpack/lib/ExternalsPlugin.js
generated
vendored
6
node_modules/webpack/lib/ExternalsPlugin.js
generated
vendored
@@ -12,8 +12,10 @@ class ExternalsPlugin {
|
||||
this.externals = externals;
|
||||
}
|
||||
apply(compiler) {
|
||||
compiler.plugin("compile", (params) => {
|
||||
params.normalModuleFactory.apply(new ExternalModuleFactoryPlugin(this.type, this.externals));
|
||||
compiler.hooks.compile.tap("ExternalsPlugin", ({ normalModuleFactory }) => {
|
||||
new ExternalModuleFactoryPlugin(this.type, this.externals).apply(
|
||||
normalModuleFactory
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user