Skip to content

Commit

Permalink
Fix: (webpack.config.js) css-loader API change
Browse files Browse the repository at this point in the history
  • Loading branch information
alphapapa committed Oct 12, 2023
1 parent 185a37a commit 4125909
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpack.config.js
Expand Up @@ -159,7 +159,9 @@ module.exports = {
test: /\.scss$/,
use: [
{loader: MiniCssExtractPlugin.loader},
{loader: "css-loader?-url"}, //url()-inlining turned off
{loader: "css-loader"},
{loader: "css-loader",
options: { url: false }},
{loader: "sass-loader",},
],
}],
Expand Down

0 comments on commit 4125909

Please sign in to comment.