Providers modules cannot be found. #3374
-
TS2307: Cannot find module 'next-auth/providers/credentials' or its corresponding type declarations. Basically this line of code gives me error: Also any other Provider doesn't work also. "next-auth": "^4.0.2", Deleted node_modules installed it again same problem. tsconfig.json, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Please upgrade |
Beta Was this translation helpful? Give feedback.
-
I had this happen to me today as well... Needed to change a lot of imports on version 4.0.2. You need this: import CredentialsProvider from 'next-auth/providers/credentials' |
Beta Was this translation helpful? Give feedback.
-
Looks correct to me https://unpkg.com/browse/[email protected]/providers/credentials.d.ts |
Beta Was this translation helpful? Give feedback.
I had this happen to me today as well... Needed to change a lot of imports on version 4.0.2.
You need this: import CredentialsProvider from 'next-auth/providers/credentials'