Back to Clerk

`signJwt` import moved to `@clerk/backend/tokens`

packages/upgrade/src/versions/core-2/backend/signjwt-import-path-move.md

latest308 B
Original Source

The signJwt import path has changed from @clerk/backend to @clerk/backend/tokens. You must update your import path in order for it to work correctly. Example below of the fix that needs to be made

diff
- import { signJwt } from "@clerk/backend"
+ import { signJwt } from "@clerk/backend/tokens"