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
I have simple structure with style.sass and _variables.sass files in the same level
// style.sass @import variables // _variables.sass $var1: 10 $var2: 20
And it cause "Scss compiler error"
When import in your code
const importer = function(url,prev,done){ ... done({ contents: allFiles.get(parsed.path).getContentsAsString()}); } ... const options = { ... importer: importer } ... sass.render(options,f.resolver());
importer in node-sass get contents but only in scss format (not sass)
contents
The text was updated successfully, but these errors were encountered:
Duplicate of #120
Sorry, something went wrong.
No branches or pull requests
I have simple structure with style.sass and _variables.sass files in the same level
And it cause "Scss compiler error"
Dig dipper
When import in your code
importer in node-sass get
contents
but only in scss format (not sass)The text was updated successfully, but these errors were encountered: