Skip to content

Commit

Permalink
Fixed import error in script
Browse files Browse the repository at this point in the history
  • Loading branch information
vania-pooh committed Jun 8, 2023
1 parent a60d06c commit b8e247f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ module.exports = {
test: /\.(sa|sc|c)ss$/,
exclude: /node_modules/,
use: [
"style-loader", MiniCssExtractPlugin.loader, "css-loader?url=false", "postcss-loader",
"style-loader", {
loader: MiniCssExtractPlugin.loader,
options: {
esModule: false,
},
},
"css-loader?url=false", "postcss-loader",
{
loader: "sass-loader"
}]
Expand Down

0 comments on commit b8e247f

Please sign in to comment.