mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
refactor(nuxt): simplify check in navigateTo
for server (#26546)
This commit is contained in:
parent
9b243631b4
commit
a33674b06b
@ -125,8 +125,7 @@ export const navigateTo = (to: RouteLocationRaw | undefined | null, options?: Na
|
||||
const toPath = typeof to === 'string' ? to : (withQuery((to as RouteLocationPathRaw).path || '/', to.query || {}) + (to.hash || ''))
|
||||
|
||||
// Early open handler
|
||||
if (options?.open) {
|
||||
if (import.meta.client) {
|
||||
if (import.meta.client && options?.open) {
|
||||
const { target = '_blank', windowFeatures = {} } = options.open
|
||||
|
||||
const features = Object.entries(windowFeatures)
|
||||
@ -137,7 +136,6 @@ export const navigateTo = (to: RouteLocationRaw | undefined | null, options?: Na
|
||||
open(toPath, target, features)
|
||||
return Promise.resolve()
|
||||
}
|
||||
}
|
||||
|
||||
const isExternal = options?.external || hasProtocol(toPath, { acceptRelative: true })
|
||||
if (isExternal) {
|
||||
|
Loading…
Reference in New Issue
Block a user