Browse Source

Fixed migration issue after updating css-loader

Kristian Vos 3 years ago
parent
commit
cc24468837
1 changed files with 10 additions and 1 deletions
  1. 10 1
      frontend/webpack.common.js

+ 10 - 1
frontend/webpack.common.js

@@ -50,7 +50,16 @@ module.exports = {
 			{
 				test: /\.scss$/,
 				exclude: /node_modules/,
-				use: ["vue-style-loader", "css-loader", "sass-loader"]
+				use: [
+					"vue-style-loader",
+					{
+						loader: "css-loader",
+						options: {
+							url: false,
+						}
+					},
+					"sass-loader"
+				]
 			}
 		]
 	}