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/arrow-up-right
... ## AWS VITE_APP_AWS_POOL_ID= VITE_APP_AWS_APP_CLIENT_ID= ...
Change Config
export const APP_AUTH: AuthProvider = AuthProvider.AWS;
Change AuthProvider
Comment another provider in the following file and uncomment Aws one.
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';
Change Auth Hooks
Comment another context in the following file and uncomment Aws one.
For nextJS, refer next-auth site: https://next-auth.js.org/providers/cognitoarrow-up-right
Last updated 1 year ago
import AuthContext from 'contexts/AWSCognitoContext';