No content to show
User Activity
Here is the full configuration of the app, you might need it : module.exports = {
apps : [{
name : "shopify-client-app-prp",
cwd : "/srv/shopify-app-prp",
script : "npm run start",
env : {
"BASE_URL" : "https://appify-prp....
I tried to reinstall the app in production.I now have this error : TypeError: Cannot read properties of undefined (reading 'statusCode')
at /srv/shopify-app-prp/node_modules/@shopify/shopify-api/adapters/node/adapter.ts:36:41
at Generator.ne...
I also printed the session used to make the request.Here is the code : const { session } = await authenticate.admin(request);
const client = new apiShopify.clients.Graphql({session});
console.log(session);
const id = (await client.query({
...
In production it's running with PM2, so I use the ecosystem.config.js file.And I know the environment variables are correctly loaded because I printed them and it's the right values.So I don't know where the error come from.
Hello I'm creating an app with the remix framework.When in run npm run dev everything works. I can make request to the GraphQL admin API. But in production, after running rpm run build and npm run start I have this error[API] Invalid API key or acces...