👩💻 Join our community of thousands of amazing developers!
If you’ve ever worked with webpack, you’ve probably heard of webpack plugins. Plugins are a great option for extending webpack’s implementation and architecture. If you look at webpack’s source code, around 80% of their code is implemented using plugins. It helps in separating the core part of webpack, which leads to better code maintenance. webpack also supports the concepts of loaders which help in extending webpack too and work along with resolvers. They are mainly used to transform the so...