Reactjs – Get Amplify's Environment Variables on Vite React
How do I get Amplify's Environment Variable on a Vite React application? I've tried console logging to the import.meta.env, but only the process_env is showing. What do I need to do?
How do I get Amplify's Environment Variable on a Vite React application? I've tried console logging to the import.meta.env, but only the process_env is showing. What do I need to do?
I've deployed a ReactJS application in AWS Amplify. That ReactJS app calling a Spring boot service that runs in same AWS EC2 instance. I am getting the following error from ReactJS App that calls EC2 instance. Mixed Content: The page…
For a multitude of reasons, mostly ease of use and internally broken imports, I don't want to add AWS amplify to my current react-native project. Is there any way I can directly read objects from S3 without AWS amplify and…
I am following the AWS Android Amplify module 5 API and Database implementation guide but I encountered an error where I am unable to build the project due to unresolved symbols in the NoteData.java file which is automatically generated by…
I am building a website with AWS Amplify. This website uses amongst other things, several Python Lambda functions. Today, when building I get the following error message : 🛑 Received error [Error: Command failed with exit code 1: pipenv --venv…
I want to go from CRA to nextjs but I am having troubles integrating AWS Amplify authentication. The amplify login form does show up but when trying to sign in it gives me the following error: Error [ERROR] 40:38.8 AuthError…
I am trying to create a desktop application, which sends user files to Amazon S3, where the users can then sign in to a website to view/download their files. I have the desktop application working, it has the user sign…
I'm trying to deploy my react app on amplify. I'm using Storage, Authentication and GraphQL API. But I'm getting this error when pushing the code. Build is failing. Everything works as expected when running on local host. 2023-05-20T09:21:17.184Z [INFO]: #…
This is my code: // Login.vue <template> <authenticator /> </template> import { Authenticator } from '@aws-amplify/ui-vue' export default { name: 'Login', components: { Authenticator, }, } // package.json "dependencies": { "@aws-amplify/auth": "^5.3.6", "@aws-amplify/core": "^5.3.0", "@aws-amplify/ui-vue": "^3.1.15", "aws-amplify": "^5.2.1", } It's…
I have an app built in Nexjs (13.4, Node 18.16) that calls a Lambda function (API Gateway). I have the same versions locally, and it runs fine when I do npm run dev, but I hit an error when I…