From 8d30bbd9ac9702a6df3ec66177b1cb5693b5c5d5 Mon Sep 17 00:00:00 2001 From: Pranjali Date: Mon, 9 Mar 2026 21:35:39 +0530 Subject: [PATCH] docs: clarify style-loader usage in Getting Started --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a1d42739..f558a663 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,12 @@ or pnpm add -D css-loader ``` +In the example configuration below, `style-loader` is used to inject the processed CSS into the DOM during runtime. You may need to install it as well: + +```console +npm install --save-dev style-loader +``` + Then, add the loader to your `webpack` configuration. For example: **file.js**