I am currently in the process of migrating my Ionic 3 app to version 4. However, I have encountered an issue where some pages are not recognizing the SCSS file from the TypeScript component.
@Component({
selector: 'car-id',
templateUrl: 'car-id.page.html',
styleUrls: ['card-id.page.scss']
})
Interestingly, some pages are working perfectly fine without any issues.
Here is the error message that I am seeing:
[ng]
[ng] ERROR in ./src/app/pages/car-id/car-id.page.ts
[ng] Module not found: Error: Can't resolve './card-id.page.scss' in '..\src\app\pages\car-id'
Does anyone know how I can go about fixing this? Thank you!