I am encountering 2 error messages when trying to compile my new project:
Error: Module not found: Error: Can't resolve 'C:/Users/Avishek/Documents/practice/frontend/src/app/pages/admin/authentication/authentication.component.css' in 'C:\Users\Avishek\Documents\practice\frontend'
and
Error: The loader "C:/Users/Avishek/Documents/practice/frontend/src/app/pages/admin/authentication/authentication.component.css" didn't return a string.
This issue is new to me as I have never faced it before, even though I recently created a project with the same angular version. Here are my tsconfig.json
& package.json
files respectively.
tsconfig.json
{
"compileOnSave": false,
...
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
...
}
}
}
package.json
{
"name": "project",
"version": "1.0.0",
"scripts": {
...
},
...
...
}
I need assistance in identifying and resolving this issue. Thank you for your help.