We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5031dc2 commit e72e4baCopy full SHA for e72e4ba
src/history/html5.ts
@@ -19,6 +19,8 @@ import { stripBase } from '../location'
19
20
type PopStateListener = (this: Window, ev: PopStateEvent) => any
21
22
+let createBaseLocation = () => location.protocol + '//' + location.host
23
+
24
interface StateEntry extends HistoryState {
25
back: HistoryLocationNormalized | null
26
current: HistoryLocationNormalized
@@ -200,7 +202,7 @@ function useHistoryStateNavigation(base: string) {
200
202
state: StateEntry,
201
203
replace: boolean
204
): void {
- const url = base + to.fullPath
205
+ const url = createBaseLocation() + base + to.fullPath
206
try {
207
// BROWSER QUIRK
208
// NOTE: Safari throws a SecurityError when calling this function 100 times in 30 seconds
0 commit comments