1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-23 14:31:07 +00:00

css loader: exclude node_modules

This commit is contained in:
slowbackspace 2018-12-18 14:57:55 +01:00
parent 859b1ca6db
commit b533fce4e3
3 changed files with 3 additions and 0 deletions

View File

@ -86,6 +86,7 @@ module.exports = {
}, },
{ {
test: /\.css$/, test: /\.css$/,
exclude: /(node_modules)/,
use: ['style-loader', 'css-loader'], use: ['style-loader', 'css-loader'],
}, },
], ],

View File

@ -100,6 +100,7 @@ module.exports = {
}, },
{ {
test: /\.css$/, test: /\.css$/,
exclude: /(node_modules)/,
use: ['style-loader', 'css-loader'], use: ['style-loader', 'css-loader'],
}, },
], ],

View File

@ -53,6 +53,7 @@ module.exports = {
}, },
{ {
test: /\.css$/, test: /\.css$/,
exclude: /(node_modules)/,
use: ['style-loader', 'css-loader'], use: ['style-loader', 'css-loader'],
}, },
], ],