I have created two environment variables with the below values:
STORE_DOMAIN='www.store.com';
STORE_ACCESS_TOKEN='123456789';
When I try to access these environment variables in my nextjs app like,
domain = process.env.STORE_DOMAIN
token = process.env.STORE_ACCESS_TOKEN
console.log("domain " + domain + " api " + token)
I am getting the domain value in console.log 2 times, and I'm unable to get the token value.
I want to get the value of both domain and token. Please help.