Bundling CSS

The css-loader property is similar to raw-loader since it imports a CSS file as a string, but it does something more: it parses the file to resolve all references to other files (such as @import statements), thus returning a unique string containing all style information. It may be used as it is if the application needs to process manually, but usually it is chained with other loaders to get the CSS directly in the web page. There are two options:

  • Inserting automatically all styles within a style tag in the web page that includes the JavaScript file importing the CSS. The style-loader does this job. This is the recommended option in development mode, since it supports Hot Module Replacement, so if HMR is on, then changes to ...

Get Hands-On TypeScript for C# and .NET Core Developers now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.