From ef02dadaf7183c7f5b63295dc606bd4f3c0272e9 Mon Sep 17 00:00:00 2001 From: Florian Reuschel Date: Tue, 13 Aug 2024 13:49:45 +0200 Subject: [PATCH] docs: remove incorrect parameter documentation of `sassOptions` function (#1227) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78b2459a..5ca56164 100644 --- a/README.md +++ b/README.md @@ -362,7 +362,7 @@ module.exports = { { loader: "sass-loader", options: { - sassOptions: (content, loaderContext) => { + sassOptions: (loaderContext) => { // More information about available properties https://webpack.js.org/api/loaders/ const { resourcePath, rootContext } = loaderContext; const relativePath = path.relative(rootContext, resourcePath);