fix(nuxt): don't encode location header (#26893)

This commit is contained in:
Julien Huang 2024-04-22 23:11:46 +02:00 committed by GitHub
parent 64d09fa31d
commit 62296818aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 16 deletions

View File

@ -169,7 +169,8 @@ export const navigateTo = (to: RouteLocationRaw | undefined | null, options?: Na
nuxtApp.ssrContext!._renderResponse = {
statusCode: sanitizeStatusCode(options?.redirectCode || 302, 302),
body: `<!DOCTYPE html><html><head><meta http-equiv="refresh" content="0; url=${encodedLoc}"></head></html>`,
headers: { location: encodeURI(location) },
// do not encode as this would break some modules and some environments
headers: { location },
}
return response
}

View File

@ -937,12 +937,6 @@ describe('navigate', () => {
expect(status).toEqual(404)
})
it('expect to redirect with encoding', async () => {
const { status } = await fetch('/redirect-with-encode', { redirect: 'manual' })
expect(status).toEqual(302)
})
})
describe('preserves current instance', () => {

View File

@ -1,9 +0,0 @@
<template>
<div>
oh no !
</div>
</template>
<script setup lang="ts">
await navigateTo('/cœur')
</script>