Check on which NextJs version is my project based

Viewed 7577

I am working on one NextJs project and I would like to know which NextJs version is installed. Where in NextJs project I can check that?

Thanks

2 Answers

You can view package.json of your project. Or You can use Next.js CLI In your project root directory enter command npx next --version.


enter image description here

In the root directory project base run npx next -v. Hope this useful for you!

Related