When implementing Angulartics2 in my Angular application I get Google Tracking for the initial page view to work, and anytime I refresh the page (hard refresh) Google Analytics picks up the new page view to track as well.
The problem occurring is that when I go from one route to another without refreshing the application, Google Analytics live tracker doesn't detect the user is on a new page.
imports: [
...,
Angulartics2Module.forRoot([Angulartics2GoogleAnalytics], {
pageTracking: {
clearIds: true,
clearQueryParams: true,
}
})
]
Has anyone experienced this or know what could be going on here?