Vercel maximum number of projects?

Viewed 1313

Does vercel have a maximum number of projects in the hobby plan? I know that you can import a maximum of three GitHub repositories. Does that mean that you can create a maximum of three projects. or is it possible to host more than three projects in vercel?

1 Answers

EDIT: Please refer to the official documentation for further information (link).

No hard limits at this point. You can also import as many GitHub projects as you want. However, given a single repository, you can only create 3 Vercel projects with it in your personal account. For team accounts the current number is 10.

Example:

  • You have a monorepo with a Next.js application and other applications. You can re-use the repository to create 3 Vercel projects. A commit from the repository will trigger builds on all 3 projects;
  • You can have 100s of GitHub repositories connected to Vercel.

Be aware of API rate limits as well, which you can find here.

Related