Skip to content

Commit

Permalink
fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
aza547 committed Aug 26, 2024
1 parent 012bf7d commit f802f26
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .erb/configs/webpack.config.renderer.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,18 @@ const configuration: webpack.Configuration = {
},
},
'sass-loader',
'postcss-loader',
],
include: /\.module\.s?(c|a)ss$/,
},
{
test: /\.s?(a|c)ss$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
'postcss-loader',
],
exclude: /\.module\.s?(c|a)ss$/,
},
// Fonts
Expand Down

0 comments on commit f802f26

Please sign in to comment.