From 2350daee179dec42dd608245e352251bc17f0f1c Mon Sep 17 00:00:00 2001 From: luquechen Date: Wed, 18 Sep 2024 20:21:07 +0800 Subject: [PATCH] fix: fix in low browser 400 Bad Request --- packages/nuxt/src/app/composables/manifest.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/nuxt/src/app/composables/manifest.ts b/packages/nuxt/src/app/composables/manifest.ts index c828faeeb3..a7b73cf5e6 100644 --- a/packages/nuxt/src/app/composables/manifest.ts +++ b/packages/nuxt/src/app/composables/manifest.ts @@ -25,6 +25,7 @@ function fetchManifest () { throw new Error('[nuxt] app manifest should be enabled with `experimental.appManifest`') } manifest = $fetch(buildAssetsURL(`builds/meta/${useRuntimeConfig().app.buildId}.json`), { + method: 'get', responseType: 'json', }) manifest.then((m) => {