节点补充不加载(使用webpack)

时间:2016-03-17 18:57:08

标签: node.js webpack webpack-dev-server bourbon

在使用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

任何提示?谢谢!

0 个答案:

没有答案