Speed up `npx convex dev`
@Espen asked:
Is there any way to speed up the Convex function syncing so it takes less than 3-4 sec after saving the file? (asking for a friend with ADHD)
2 Replies
Hey @Espen , TypeScript is usually the slow step, and since you probably have it running in your IDE already, you can skip it:
npx convex dev --typecheck=disable
Check out the help for the command for more options:
npx convex dev --help
Great. Thank you!