Skip to content

Commit

Permalink
MID-8561 fix for icons being broken in chrome from time to time (adde…
Browse files Browse the repository at this point in the history
…d charset utf-8 to vendors css).
  • Loading branch information
1azyman committed Mar 9, 2023
1 parent 96f78ec commit 97e2161
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 8 additions & 1 deletion gui/admin-gui/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ module.exports = {
},
},
'./node_modules/postcss-loader',
'./node_modules/sass-loader',
{
loader: "./node_modules/sass-loader",
options: {
sassOptions: {
outputStyle: "expanded",
}
},
},
],
},
{
Expand Down
4 changes: 0 additions & 4 deletions gui/admin-gui/webpack.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
mode: 'production',
plugins: [
// Extracts CSS into separate files
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: '[id].css',
Expand All @@ -20,9 +19,6 @@ module.exports = {
optimization: {
minimize: true,
minimizer: [new CssMinimizerPlugin(), '...'],
// runtimeChunk: {
// name: 'runtime',
// },
},
performance: {
hints: false,
Expand Down

0 comments on commit 97e2161

Please sign in to comment.