我正在尝试从node_modules导入css文件。
我的webpack配置:
pd.get_dummies(
df.set_index('text')['labels'].str.split(', ', expand=True).stack()
).groupby('text').sum()
此外,我想将其导入自定义标头组件中,如下所示:
{
// Preprocess 3rd party .css files located in node_modules
test: /\.css$/,
include: /node_modules/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: true,
},
},
],
}
但是它似乎不起作用。有人知道这里出什么问题吗?