Webpack for CSS
Webpack can also be used to compile and bundle your CSS files. The webpack documentation is a bit sparse on this topic, and advocates a non-standard way of handling CSS: inline <style>
tags.
Any modern web development tool chain will use a CSS pre-processor like SASS or Less. Webpack supports these tools, but using them requires a bit of extra configuration.
In order to make things as clear as possible, we'll build our CSS pipeline progressively so that you can grasp what's happening at every stage.