i have some plugin in my Webpack config:
plugins: [
new somePlugin()
]
But i want does not start this plugin when i just run npm run start, but run if i add some flags, like npm run start --plugin for example. Is it possible to implement this without dividing the Webpack into different configurations?