Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

This version of CLI is only compatible with Angular versions

How To Solve This version of CLI is only compatible with Angular versions ^13.0.0, but Angular version 12.2.13 was found instead Error?

 Here You just need to change angular-devkit/build-angular version from ^13.0.2 to ^12.2.8 and Now your problem must be solved. Second solution Just need to change @angular-devkit/build-angular in Package.json. Just open Your package.json file and find this line: “@angular-devkit/build-angular”: “^13.0.2” replace above line with this Line: “@angular-devkit/build-angular”: “~0.1102.3” Now, Run Your app and Your error must be solved.


Solution 1: Change build-angular

Here You just need to change angular-devkit/build-angular version from ^13.0.2 to ^12.2.8 and Now your problem must be solved.

Solution 2: run This command

npm i @angular-devkit/build-angular@12.2.13 --force
npm i @angular/cli@12


Solution 3: Change @angular-devkit/build-angular in Package.json

Just need to change @angular-devkit/build-angular in Package.json. Just open Your package.json file and find this line.

```
"@angular-devkit/build-angular": "^13.0.2"
```
Comment

PREVIOUS NEXT
Code Example
Javascript :: concat js mdn 
Javascript :: remove duplicates from array of objects 
Javascript :: string json to class c# 
Javascript :: short ajax get method jquery 
Javascript :: duplicate numbers in an array javascript 
Javascript :: javascript change font color based on value 
Javascript :: check if object has method javascript 
Javascript :: do while javascript 
Javascript :: pretty alerts js 
Javascript :: get first element in json array javascript 
Javascript :: javascript todataurl 
Javascript :: install javascript kali linux 
Javascript :: inc a value mongoose 
Javascript :: codeigniter 3 if ajax request 
Javascript :: javascript tofixed is not a function 
Javascript :: make text lowercase javascript 
Javascript :: iife js arrow function 
Javascript :: jquery set select value 
Javascript :: how remove the spaces from the string, then return the resultant string 
Javascript :: define an unsigned long int js 
Javascript :: add on click to div using jquery 
Javascript :: javascript tofixed no trailing zeros 
Javascript :: javascript throw new error 
Javascript :: node express app.listen at specific port & host 
Javascript :: how to find all elements starting with class jquery 
Javascript :: js bubble sort 
Javascript :: two array in one js 
Javascript :: javascript edit form value 
Javascript :: jquery parent 
Javascript :: regular expression characters 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =