我的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