There seems to be an issue with node-sass that I'm encountering...
I have the following files: - app.scss - variables.scss - style.scss
app.scss
@import 'variables';
@import 'style';
variables.scss
$green: #38c172;
style.scss
button{
background-color: $green;
}
Although it functions correctly, when I check my app.css file, I find:
button{
background-color: #38c172;
}
Despite this working, I keep encountering the same error... why is this happening? It's so frustrating!