webpack 错误:找不到或无法读取要导入的文件: bourbon ,如何修复?

bie*_*ier 3 javascript webpack-2 angular webpack-3

我正在尝试将 Bourbon 包加载到我的 SCSS 文件中。我正在使用 Angular 2,这是我的 webpack 3.0 配置:

var path = require("path");
var webpack = require("webpack");

module.exports = {
  devServer: {
    contentBase: path.join(__dirname, "build"),
    compress: true,
    port: 9000
  },
  node: {
    fs: 'empty'
  },
  cache: true,
  devtool: "eval", //or cheap-module-eval-source-map
  entry: {
    app: path.join(__dirname, "client/app", "app.js")
  },
  output: {
    path: path.join(__dirname, "buildf"),
    filename: "ha.js",
    chunkFilename: "[name].js"
  },
  plugins: [
    //Typically you'd have plenty of other plugins here as well
    new webpack.DllReferencePlugin({
      context: path.join(__dirname, "client"),
      manifest: require("./build/vendor-manifest.json")
    }),
  ],
  module: {
    loaders: [
      {
        test: /\.js?$/,
        loader: "babel-loader",
        include: [
          path.join(__dirname, "client") //important for performance!
        ],
        exclude: [
          path.join(__dirname, "node_modules")
        ],
        query: {
          cacheDirectory: true, //important for performance
          plugins: ["transform-regenerator"],
          presets: ["es2015", "stage-0"]
        }
      },

      { test: /\.(scss|sass)$/, loader: ['style-loader', 'css-loader', 'sass-loader'] },
      { test: /\.html$/, loader: 'raw-loader' },
      { test: /\.css$/, loader: 'css-loader' }
    ]
  }
};
Run Code Online (Sandbox Code Playgroud)

当我运行 webpack 时,出现以下错误:

./node_modules/css-loader!./node_modules/sass-loader!./client/app/app.scss 中出现错误模块构建失败:@import“bourbon”;^ 未找到或无法读取要导入的文件:bourbon。父样式表:/Users/john/NG6-starter/client/app/app.scss 中的 stdin(第 2 行,第 1 列)@ ./client/app/app.scss 4:14-116 @ ./client/app /app.component.js @ ./client/app/app.js @ multi (webpack)-dev-server/client?http://localhost:9000 ./client/app/app.js webpack:编译失败。

为什么找不到波本威士忌成分?这是代码的链接

con*_*exo 5

2021 年 6 月更新在版本中,8.0.0开发团队sass-loader决定将所有 SASS 相关选项移至sassOptions内部对象options

module: {
    rules: [{
        test: /\.scss$/,
        use: [{
            loader: "style-loader"
        }, {
            loader: "css-loader"
        }, {
            loader: "sass-loader",
            options: {
                sassOptions: {
                    includePaths: ["node_modules/bourbon/core"],
                }
            }
        }]
    }]
}
Run Code Online (Sandbox Code Playgroud)

8.0.0 之前:

您需要传递options.includePathssass-loader

module: {
    rules: [{
        test: /\.scss$/,
        use: [{
            loader: "style-loader"
        }, {
            loader: "css-loader"
        }, {
            loader: "sass-loader",
            options: {
                includePaths: ["node_modules/bourbon/core"]
            }
        }]
    }]
}
Run Code Online (Sandbox Code Playgroud)