Is there a way to secure app scope variables from being accessed through the browser console? I've already disabled debug info using
$compileProvider.debugInfoEnabled(false);
But it seems like this setting can still be bypassed with reloadWithDebugInfo()
.
What steps should I take to ensure that app scope variables remain inaccessible during production?