Webpack loaders vs plugins; what's the difference? What is the difference between loaders and plugins in webpack? The documentation for plugins just says: Use plugins to add functionality typically related to bundles in webpack. I know that babel uses a loader for jsx/es2015 transforms, but it looks like other common tasks (copy-webpack-plugin, for example) use plugins instead. Loaders do the pr..