AWS Cognito
Currently, AWS uses a dummy config, so we don't need to change anything, but in the actual implementation, you need to set poolId and appClientId in the following file. For more details, refer to AWS here: https://aws.amazon.com/cognito/
Set AWS Config in .env
## AWS
VITE_APP_AWS_POOL_ID=
VITE_APP_AWS_APP_CLIENT_ID=Change AuthProvider
// Replace at line 17
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';Change auth Hooks
Comment out another context in the following file and uncomment the AWS Cognito one.
import AuthContext from 'contexts/AWSCognitoContext';Change Auth Login Method
export const APP_AUTH: AuthProvider = AuthProvider.AWS;Currently, AWS uses a dummy config, so we don't need to change anything, but in the actual implementation, you need to set poolId and appClientId in the following file. For more details, refer to AWS here: https://aws.amazon.com/cognito/
Set AWS Config in .env
## AWS
VITE_APP_AWS_POOL_ID=
VITE_APP_AWS_APP_CLIENT_ID=Change AuthProvider
// Replace at line 17
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';Change auth Hooks
Comment out another context in the following file and uncomment the AWS Cognito one.
import AuthContext from 'contexts/AWSCognitoContext';Change Auth Login Method
export const APP_AUTH: AuthProvider = AuthProvider.AWS;Currently, AWS uses a dummy config, so we don't need to change anything, but in the actual implementation, you need to set poolId and appClientId in the following file. For more details, refer to AWS here: https://aws.amazon.com/cognito/
Set AWS Config in .env
## AWS
NEXT_PUBLIC_AWS_POOL_ID=
NEXT_PUBLIC_AWS_APP_CLIENT_ID=Change AuthProvider
// Replace at line 27
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';Change auth Hooks
Comment out another context in the following file and uncomment the AWS Cognito one.
import AuthContext from 'contexts/AWSCognitoContext';Change Auth Login Method
export const APP_AUTH: AuthProvider = AuthProvider.AWS;Currently, AWS uses a dummy config, so we don't need to change anything, but in the actual implementation, you need to set poolId and appClientId in the following file. For more details, refer to AWS here: https://aws.amazon.com/cognito/
Set AWS Config in .env
## AWS
NEXT_PUBLIC_AWS_POOL_ID=
NEXT_PUBLIC_AWS_APP_CLIENT_ID=Change AuthProvider
// Replace at line 27
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';Change auth Hooks
Comment out another context in the following file and uncomment the AWS Cognito one.
import AuthContext from 'contexts/AWSCognitoContext';Change Auth Login Method
export const APP_AUTH: AuthProvider = AuthProvider.AWS;Last updated
Was this helpful?