When I add a library, it shows me an error on stackblitz.
Error in ~/src/main.ts ngcc failed to run on @fortawesome/angular-fontawesome@0.7.0.
https://stackblitz.com/edit/angular-ivy-wz89c7
Am I the only one to have this problem?
When I add a library, it shows me an error on stackblitz.
Error in ~/src/main.ts ngcc failed to run on @fortawesome/angular-fontawesome@0.7.0.
https://stackblitz.com/edit/angular-ivy-wz89c7
Am I the only one to have this problem?
For me it helped to disable "Enable Ivy" in the settings. Which result in:
"angularCompilerOptions": {
"enableIvy": false,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
I changed the package.json to use "latest" instead of "" for fontawesome and it works.
"@fortawesome/angular-fontawesome": "latest",