CodeCoupler Webpack Externals Factory
The CodeCoupler Webpack Externals Plugin is a concept to simplify the configuration of Webpack
regarding libraries that will be used but should not bundled.
Please read the documentation at
Quick Start:
``bash`
npm i @codecoupler/cc-webpack-externals-plugin -D
- You must be running Node 10.0 along with Webpack 5.0 or higher for version 2.x of this plugin.
- You must be running Node 8.6 or higher for version 1.x of this plugin
Add to your Webpack configuration:
`js``
const ccWebpackExternalsPlugin = require("@codecoupler/cc-webpack-externals-plugin");
module.exports = {
plugins: [new ccWebpackExternalsPlugin(options)],
};