为什么我无法使用Webpack编译SASS?

时间:2016-05-04 14:46:12

标签: webpack vue.js webpack-dev-server webpack-style-loader sass-loader

我的Webpack配置中有以下模块:

module: {
    preLoaders: [
      {
        test: /\.vue$/,
        loader: 'eslint',
        include: projectRoot,
        exclude: /node_modules/
      },
      {
        test: /\.js$/,
        loader: 'eslint',
        include: projectRoot,
        exclude: /node_modules/
      }
    ],
    loaders: [
      {
        test: /\.vue$/,
        loader: 'vue'
      },
      {
        test: /\.js$/,
        loader: 'babel',
        include: projectRoot,
        exclude: /node_modules/
      },
      {
        test: /\.json$/,
        loader: 'json'
      },
      {
        test: /\.html$/,
        loader: 'vue-html'
      },
      {
        test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
        loader: 'url',
        query: {
          limit: 10000,
          name: utils.assetsPath('img/[name].[hash:7].[ext]')
        }
      },
      {
        test: /\.scss$/,
        loaders: ['style', 'css', 'sass']
      },
      {
        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
        loader: 'url',
        query: {
          limit: 10000,
          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
        }
      }
    ]
  },

你可以看到我正在使用sass-loader,而对于* .scss文件,我正在定义这个管道:['style', 'css', 'sass']

然后我有我的scss文件:

html {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

(...)

最后我有我的HTML页面(来自vue.js的VUE文件),它导入了scss文件:

<script>

require('./styles/main.scss')

(...)

</script>

但不知何故,我在启动项目时遇到此错误:

ERROR in ./~/css-loader!./~/sass-loader!./~/style-loader!./~/css-loader!./~/sass-loader!./src/styles/main.scss
Module build failed:
html {
^
      Invalid CSS after "...load the styles": expected 1 selector or at-rule, was "var content = requi"
      in /Users/td/uprank/src/styles/main.scss (line 1, column 1)
 @ ./src/styles/main.scss 4:14-247 13:2-17:4 14:20-253

为什么管道错误? (似乎webpack正在尝试处理['css', 'sass', 'style', 'css', 'sass']而不是模块中配置的['style', 'css', 'sass']

我做错了什么?

谢谢!

编辑:链接到完整的示例项目:https://dl.dropboxusercontent.com/u/1066659/dummy.zip

1 个答案:

答案 0 :(得分:32)

之所以发生这种情况,是因为Vue会自动为CSS,SASS / SCSS,Stylus生成加载程序配置。

(参见projectRoot/build/utils.js行~10到~50)

所以你看到错误了,因为你有一个试图导入文件的webpack加载器,然后Vue试图导入(已经加载的)文件。因此,您可以将加载链视为sass -> css -> style -> sass -> css -> vue-style

要解决此问题,您必须删除添加的加载程序:

{
  test: /\.scss$/,
  loaders: ['style', 'css', 'sass']
},

并且只依赖于提供的装载程序。

您可以通过以下两种方式之一加载样式表:

  

注意:您必须使用scss而不是sass,因为sass会尝试使用缩进语法而不是括号语法来解析样式表。

1:

<style lang="scss">
  @import './styles/main.scss
</style>

2:

<style src="./styles/main.scss"></style>

这两个都将导入样式表,后者只是阻止您向组件添加任何其他样式。