Switch to AWS Cognito
JWT to AWS Cognito
Set AWS Config
At present, AWS uses a dummy config, so we don't need to change anything, but in actual implementation, you need to set poolId and appClientId in the following file. For more detail refer to AWS here: https://aws.amazon.com/cognito/
...
## AWS
VITE_APP_AWS_POOL_ID=
VITE_APP_AWS_APP_CLIENT_ID=
...
Change AuthProvider
port { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';
Change auth Hooks
import AuthContext from 'contexts/AWSCognitoContext';
It's also super simple. We have provided a code that just needs to be replaced.
From:
src\sections\auth\login\AWSCognitoLogin
To:
src\sections\auth\auth-forms\AuthLogin.tsx
We have provided a code that just needs to be replaced.
From:
src\sections\auth\register\AWSCognitoRegister
To:
src\sections\auth\auth-forms\AuthRegister.tsx
Last updated