在使用webpack构建应用程序时尝试node-refills
,但导入似乎不起作用。
webpack.config.js
中的
var NodeRefills = require("node-refills");
module.exports = {
module: {
loaders: [
{
test: /\.scss$/,
exclude: /node_modules/,
loader: 'style!css!sass'
}
]
},
sassLoader: {
includePaths: NodeRefills.includePaths
},
}
对node-neat
做同样的事情,我可以像这样导入这些资产:
layout.scss
中的
@import "bourbon";
@import "neat";
但在上面的例子中,
@import "refills";
导致webpack构建失败:
File to import not found or unreadable: refills
任何提示?谢谢!