What product/components do you use and which version/fix level are you on?
Cumulocity IoT (backend 1011.0.19 frontend 1011.0.4)
Is your question related to the free trail, or to a production (customer) instance?
Customer license
Hi it’s Luca
I’m developing an application starting from cockpit. I need to build my app using different profiles/configuration. For example, I need to show a component while im developing but hide it in production. To solve this from an Angular perspective we have environtment.ts and angular.json configuration (there’s no need to exaplain this solution in detail). Then we can just build the application with something like
ng build --configuration=dev
or ng build --configuration=production
Unfortunately in my scenario (hybrid application) I have neither environment.ts nor angular.json.
How can I solve this?