As a beginner in using sass, I decided to utilize the node-sass NPM package for compiling scss files into CSS format.
Upon saving the file, I encountered the following error:
{
"status": 3,
"message": "Internal Error: File to read not found or unreadable: D:/WEB Development/Advanced Html and css practice/My Portfolio/scss/main.scss",
"formatted": "Internal Error: File to read not found or unreadable: D:/WEB Development/Advanced Html and css practice/My Portfolio/scss/main.scss\n"
}
Interestingly, this error only occurs intermittently. Other times, the file compiles without any issues, like the example below:
Rendering Complete, saving .css file...
Wrote CSS to D:\WEB Development\Advanced Html and css practice\My Portfolio\dist\css\main.css
This is a snippet of my package.json: https://i.sstatic.net/cBFXY.png
In addition, here's the error message displayed in my terminal: https://i.sstatic.net/ZSCBB.png
If anyone could offer assistance with this problem, it would be greatly appreciated. Thank you in advance!