How to see all the plug-ins list of webpack

clipboard.png
I see the optimize-css-assets-webpack-plugin plug-in in the webpack configuration of vue cli, but I don"t see this plug-in in the list of plug-ins on webpack"s official website, so how can I find such a plug-in? Is it because only some of the plug-ins are listed on the official website, so where do you want to see all the plug-ins supported by webpack?

Mar.02,2021

any plug-in that conforms to the plug-in specification can be used, and the plug-ins listed on the official website are only part of it. Everyone can write new plug-ins according to their own needs, so there is no place to view all the plug-ins. A compromise is to search the list of npm repositories that webpack-plugin, plug-ins used in general production will take the name of this specification and publish it to the npm warehouse.

Menu