Stuck with Bitbucket pipelines.
In my code i have some secret info
apiKey: process.env.apiKey,
authDomain: process.env.authDomain
But bitbucket pipeline during build can't access them.
Have set up variables via Bitbucket Env variables UI
In yml file i can access variables via $Variable, but how to do this with code?
Thanks