We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// 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.
The text was updated successfully, but these errors were encountered:
@icemirror any update?
Sorry, something went wrong.
mark, having same problem with vue cli 2.0 don't know how to config in chainWebpack
I don't use Vue. I'm open to PRs to fix this.
No branches or pull requests
// 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.
The text was updated successfully, but these errors were encountered: