From 4787cceff3d081995a063ad7d6e88a429450d5e4 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. Closes . --- 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",}, ], }],