I'm currently implementing a web application with the OpenUI5 framework. I'm also using the UI5 Tooling.
However, I could not find any documentation about how I can use environment variables inside my app. Normaly, in any Node.js application, I would use dotenv
, but since process
is not defined in an OpenUI5 application, it's not possible for me to do so.
So, my question is this: how can I define and then use environment variables in my OpenUI5 application? If code examples could also be provided, I would be very grateful.
Thank you!