We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 181efe9 commit cf53192Copy full SHA for cf53192
src/utils/scroll.ts
@@ -1,5 +1,7 @@
1
// import { RouteLocationNormalized } from '../types'
2
3
+import { isBrowser } from './env'
4
+
5
export type ScrollToPosition = {
6
x: number
7
y: number
@@ -73,9 +75,8 @@ export function scrollToPosition(position: ScrollPosition): void {
73
75
export const scrollPositions = new Map<string, ScrollToPosition>()
74
76
77
export function getScrollKey(path: string, distance: number): string {
- const position: number = history.state
- ? history.state.position - distance
78
- : -1
+ const position: number =
79
+ isBrowser && history.state ? history.state.position - distance : -1
80
return position + path
81
}
82
0 commit comments