Skip to content

Commit cf53192

Browse files
committed
fix(scroll): only apply on browser
1 parent 181efe9 commit cf53192

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/utils/scroll.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// import { RouteLocationNormalized } from '../types'
22

3+
import { isBrowser } from './env'
4+
35
export type ScrollToPosition = {
46
x: number
57
y: number
@@ -73,9 +75,8 @@ export function scrollToPosition(position: ScrollPosition): void {
7375
export const scrollPositions = new Map<string, ScrollToPosition>()
7476

7577
export function getScrollKey(path: string, distance: number): string {
76-
const position: number = history.state
77-
? history.state.position - distance
78-
: -1
78+
const position: number =
79+
isBrowser && history.state ? history.state.position - distance : -1
7980
return position + path
8081
}
8182

0 commit comments

Comments
 (0)