WEBPACK


7 April 2018

Custom building bootstrap and jQuery with webpack

JQUERYWEBPACKBOOTSTRAP

When using bootstrap its always been simple to slim down the css by removing some '@imports' in your less or scss files. Getting rid of that extra bloat in js can be done in the same way thanks to webpack. If you're not familiar with webpack it packs js modules into common js assets. Each component of bootstrap and jQuery are split into modules, using webpack loaders we can import only the modules we are using.

Read more →