UI Deploy

Curated, Short, Web UI Dev we Love.

Node modules as Webpack externals

Webpack allows you to define externals - modules that should not be bundled.

When bundling with Webpack for the backend - you usually wouldn't want to bundle its node_modules dependencies. This library creates an externals function that ignores node_modules when bundling in Webpack.

view source

Advertisement