When using isDevMode() working fine for JIT build, while failed for AOT stating
Error: Error encountered resolving symbol values statically. Calling function 'isDevMode', function calls are not supported. Consider replacing the function or lambda with a reference to an exported function
trying to create export function like this but no luck
export function isDevModeEnabled() {
return isDevMode();
}