Reputation: 129
Imagine having a webpack.config.js file:
module.exports = {
...
externals: ["dependency1"],
...
}
How can I access this information in my plugin, without passing this information directly in my Plugin Constructor? (I would prefer to have it at one place.)
Upvotes: 2
Views: 765