I am a bit of confused about env variables in the production build. Simply i have a .env file which contains some variables like
REACT_APP_ALG=A128CBC-HS256
REACT_APP_K=RvIm6UTHG0wqXWLvkSmRqQhS97NvW_IwYw0CKYhEF_0
and accessing then in code like
"alg": process.env.REACT_APP_ALG,
"k": process.env.REACT_APP_K
But when I build my project then in bundle files i found some like
alg: "A128CBC-HS256",
k: "RvIm6UTHG0wqXWLvkSmRqQhS97NvW_IwYw0CKYhEF_0"
which is a security issue for me. Is there any way to hide them I'm well aware about that it's not a bug it's just I could not find any suitable solutions