I have integrated angulartics2 with Piwik in my angular 5 application & successfully found the URL tracks in the Piwik admin module after observing the URL tracked I found that http://localhost:4200/#/app/#/app/main-route/sub-route.
Below is the code used according to demo
- In index.html added Piwik tracking code with _paq statements commented
In app.module.ts
@NgModule({ imports : [Angulartics2Module.forRoot([Angulartics2Piwik])] });
In app.component.ts
export class AppComponent implements OnInit{ constructor(private angulartics2: Angulartics2) { } }
Can anyone know why it is behaving like that?
Thanks in advance. Sampat