Home > Enterprise >  I am trying to update version of angular from 8 to 9
I am trying to update version of angular from 8 to 9

Time:02-04

enter image description here I have go throgh the steps mentioned on https://update.angular.io/. after completing the process I got these errors. please help me

CodePudding user response:

try this: in your app or library module

import { CommonModule } from '@angular/common';

and add it to imports array

imports: [CommonModule]

CodePudding user response:

Check if component imported/exported properly and added to declarations

  •  Tags:  
  • Related