When i update from angular 12 to 13, the code got compiled successfully but while running the application, in console, the above error message is coming.
Using "ngx-restangular": "^6.0.0",
Added the RestangularModule.forRoot() in app.module under imports
If you are building the angular app with webpack you have to run NGCC compiler after installing NPM dependencies:
ngcc --properties es6 module main --first-only
When i update from angular 12 to 13, the code got compiled successfully but while running the application, in console, the above error message is coming.
Using "ngx-restangular": "^6.0.0",
Added the RestangularModule.forRoot() in app.module under imports
Please help me resolve this issue