Skip to content

Testing on Vercel

Nathan Rajlich edited this page Oct 18, 2023 · 2 revisions

To test out a change in the @vercel/remix package, or the Vercel fork of the @remix-run/dev compiler package:

  • Create a pull request against this vercel/remix repository.
  • Wait for the Vercel deployment to complete for the Preview deployment. The deployment contains tarballs that can be installed with your package manager.
  • Get the Preview deployment URL, for example: https://remix-git-fork-lifeiscontent-chore-minor-cleanup.vercel.sh
  • In a Remix project, install the tarballs like so:
    pnpm i @remix-run/dev@https://remix-git-fork-lifeiscontent-chore-minor-cleanup.vercel.sh/remix-dev.tgz
    pnpm i https://remix-git-fork-lifeiscontent-chore-minor-cleanup.vercel.sh/vercel-remix.tgz
    
  • Run vc deploy or push a Git commit to create a Vercel deployment.
Clone this wiki locally