When trying to create a website using scss, I encounter an error every time I save the scss file. Strangely, after saving it multiple times, the file will render properly. Although this issue is minor, it really bothers me.
I have searched for a solution on Google, but nothing seems to work.
The scss file I am working on is simple as I am just checking for errors before starting my project. Unfortunately, I have encountered one.
@import "fixed";
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #444;
}
{
"status": 3,
"message": "File to read not found or unreadable: E:/Coding Stuff/Websites/bs4/scss/main.scss",
"formatted": "Internal Error: File to read not found or unreadable: E:/Coding Stuff/Websites/bs4/scss/main.scss\n"
}
After repeatedly saving the file:
=> changed: E:\Coding Stuff\Websites\bs4\scss\main.scss
Rendering Complete, saving .css file...
Wrote CSS to E:\Coding Stuff\Websites\bs4\css\main.css
I cannot figure out what I am doing wrong. Any help would be greatly appreciated.