所以我一直在尝试将CSS加载器添加到webpack.config.js中,我的代码如下所示:
module.exports = {
entry: './scripts/entry.js',
output: {
filename: 'bundle.js'
},
devtool: 'source-map',
module: {
loaders: [
{
test : /\.css$/,
include: /scripts/,
loader : "style!css"
}
]
}
};
当我打电话时,这是一张包含所有文件和路径的图片
require('style!css!./style.css');
它执行得很好,但如果我打电话
require('./style.css');
错误出现。我是在某处定义了错误的路径还是我写错了加载器?