Starting a new Next.js project and setting up the jsconfig file with all necessary declarations:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"public/*": ["./public/*"],
"styles/*": ["./src/styles/*"],
"utils/*": ["./src/utils/*"],
"components/*": ["./src/components/*"]
}
}
}
Suddenly getting an error
Can't resolve 'styles/styles.scss'
without any apparent changes. How can I troubleshoot this issue or what could be causing it?