is it possible to define a static variable based on environment?
Something like (this code is a silly example but it holds the idea):
if (environment.production) {
public static MY_VAR: string = 'A';
} else {
public static MY_VAR: string = 'B';
}
Thanks for any advice!
public static MY_VAR = environment.production ? 'A' : 'B'?