Our app implements credential authentication using the Auth.js library. This method allows users to log in securely using their credentials.
Let's explore how to implement and use credential authentication in our app.
Ensure that the sendGridLogin setting is disabled in your settings.js.
1 // In settings.js2 const config = {3 ...4 appInfo: {5 ...6 sendGridLogin: false, // Ensure this is false7 ...8 },9 ...10 };