I'd like to prevent Google Analytics from logging events when developing my Angular 11 app on localhost. How do I do this?
So far, I've tried this:
if(window.location.hostname == 'localhost') {
window['ga-disable-GOOGLE_TAG_HERE'] = true;
} else {
window['ga-disable-GOOGLE_TAG_HERE'] = false;
}
which gives me the error:
Element implicitly has an 'any' type because index expression is not of type 'number'
Thanks in advance!