⊗tlWpCsSL 28 of 55 menu

Loaders for CSS styles in Webpack

First, we need to install loaders that will load CSS from a file and add it to the JavaScript bundle.

The css-loader loader is needed so that Webpack can handle CSS file imports. Let's install it:

npm install css-loader --save-dev

The style-loader loader is needed so that Webpack can inject CSS code into the HTML page. Let's install it:

npm install style-loader --save-dev

Install the two described loaders.

enru