diff --git a/packages/nuxt/src/app/plugins/check-outdated-build.client.ts b/packages/nuxt/src/app/plugins/check-outdated-build.client.ts index c2d8c78ecce0..e0b80462ca12 100644 --- a/packages/nuxt/src/app/plugins/check-outdated-build.client.ts +++ b/packages/nuxt/src/app/plugins/check-outdated-build.client.ts @@ -14,7 +14,7 @@ export default defineNuxtPlugin((nuxtApp) => { const currentManifest = await getAppManifest() if (timeout) { clearTimeout(timeout) } timeout = setTimeout(getLatestManifest, 1000 * 60 * 60) - const meta = await $fetch(buildAssetsURL('builds/latest.json')) + const meta = await $fetch(buildAssetsURL('builds/latest.json') + `?${Date.now()}`) if (meta.id !== currentManifest.id) { // There is a newer build which we will let the user handle nuxtApp.hooks.callHook('app:manifest:update', meta)