in src/performance/index.ts [29:41]
public getPerf(options: CustomOptionsType) {
this.recordPerf(options);
if (options.enableSPA) {
// hash router
window.addEventListener(
'hashchange',
() => {
this.recordPerf(options);
},
false,
);
}
}