Skip to content

Commit

Permalink
fix(css): fixed css loading
Browse files Browse the repository at this point in the history
  • Loading branch information
YuryShkoda committed Apr 28, 2023
1 parent 3e72384 commit 9c5acd6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion web/webpack.common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ const config: Configuration = {
]
},
{
test: /\.css$/i,
test: /\.css$/,
exclude: ['/node_modules/', /\.module\.css$/],
use: ['style-loader', 'css-loader']
},
{
test: /\.module\.css$/i,
use: [
'style-loader',
{
Expand Down

0 comments on commit 9c5acd6

Please sign in to comment.