Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 72x | import config from "@/config"; import { Amplify } from "aws-amplify"; Amplify.configure({ Auth: { mandatorySignIn: true, region: config.cognito.REGION, userPoolId: config.cognito.USER_POOL_ID, identityPoolId: config.cognito.IDENTITY_POOL_ID, userPoolWebClientId: config.cognito.APP_CLIENT_ID, oauth: { domain: config.cognito.APP_CLIENT_DOMAIN, redirectSignIn: config.cognito.REDIRECT_SIGNIN, redirectSignOut: config.cognito.REDIRECT_SIGNOUT, scope: ["email", "openid"], responseType: "code", }, }, API: { endpoints: [ { name: "os", endpoint: config.apiGateway.URL, region: config.apiGateway.REGION, }, ], }, }); |