mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 19:04:48 +00:00
26 lines
960 B
TypeScript
26 lines
960 B
TypeScript
import { defineNuxtPlugin } from '../nuxt'
|
|
import { getAppManifest } from '../composables/manifest'
|
|
import type { NuxtAppManifestMeta } from '../composables/manifest'
|
|
import { onNuxtReady } from '../composables/ready'
|
|
// @ts-expect-error virtual file
|
|
import { buildAssetsURL } from '#build/paths.mjs'
|
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
if (import.meta.test) { return }
|
|
|
|
let timeout: NodeJS.Timeout
|
|
|
|
async function getLatestManifest () {
|
|
const currentManifest = await getAppManifest()
|
|
if (timeout) { clearTimeout(timeout) }
|
|
timeout = setTimeout(getLatestManifest, 1000 * 60 * 60)
|
|
const meta = await $fetch<NuxtAppManifestMeta>(buildAssetsURL('builds/latest.json'))
|
|
if (meta.id !== currentManifest.id) {
|
|
// There is a newer build which we will let the user handle
|
|
nuxtApp.hooks.callHook('app:manifest:update', meta)
|
|
}
|
|
}
|
|
|
|
onNuxtReady(() => { timeout = setTimeout(getLatestManifest, 1000 * 60 * 60) })
|
|
})
|