-
-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
Description
// package.json
"dependencies": {
...
"vue": "^2.5.2"
},
"devDependencies": {
"sass-resources-loader": "^1.3.5",
"webpack": "^3.6.0"
}
// build/utils.js
return {
...
scss: generateLoaders('sass').concat({
loader:'sass-resources-loader',
options:{
resources: path.resolve(__dirname, '../src/assets/css/_colors.scss')
}
}),
...
}
there is error report:
Module build failed:
border-top: 1px solid $border-color--light;
^
Undefined variable: "$border-color--light".
thanks for your valuable time.