From 4e2b3b20b9542e3b819295a829730ac9d277a6d1 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Thu, 12 Oct 2023 12:26:40 -0500 Subject: [PATCH] Fix: (webpack.config.js) css-loader API change The build was broken in /. This change fixes the build, but may not be the best way to do so, as I would guess it re-enables url()-inlining, which may be undesired. --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index e11951d1ad..0fba8e9fd0 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -159,7 +159,7 @@ module.exports = { test: /\.scss$/, use: [ {loader: MiniCssExtractPlugin.loader}, - {loader: "css-loader?-url"}, //url()-inlining turned off + {loader: "css-loader"}, {loader: "sass-loader",}, ], }],