1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

fix(css): fixed css loading

This commit is contained in:
Yury Shkoda
2023-04-28 13:29:31 +03:00
parent 3e72384a63
commit 9c5acd6de3

View File

@@ -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',
{