fix(nuxt): don't add extra baseURL on server useRequestURL (#25765)

This commit is contained in:
Daniel Roe 2024-02-13 10:30:39 +00:00 committed by GitHub
parent f0a7ccd588
commit 29b338f8aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 8 deletions

View File

@ -1,14 +1,10 @@
import { getRequestURL } from 'h3'
import { joinURL } from 'ufo'
import { useRuntimeConfig } from '../nuxt'
import { useRequestEvent } from './ssr'
/** @since 3.5.0 */
export function useRequestURL () {
if (import.meta.server) {
const url = getRequestURL(useRequestEvent()!)
url.pathname = joinURL(useRuntimeConfig().app.baseURL, url.pathname)
return url
return getRequestURL(useRequestEvent()!)
}
return new URL(window.location.href)
}

View File

@ -1722,6 +1722,8 @@ describe.skipIf(isDev())('dynamic paths', () => {
(isWebpack && url === '/public.svg')
).toBeTruthy()
}
expect(await $fetch('/foo/url')).toContain('path: /foo/url')
})
it('should allow setting relative baseURL', async () => {