We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b88a97c commit 573221cCopy full SHA for 573221c
1 file changed
app/plugins/fix.client.ts
@@ -14,7 +14,11 @@ export default defineNuxtPlugin({
14
!Object.keys(nuxtApp.payload.data).length
15
) {
16
nuxtApp.hooks.hookOnce('app:suspense:resolve', () => {
17
- console.log('refreshing nuxt data')
+ console.log(
18
+ 'refreshing nuxt data',
19
+ nuxtApp.payload.data,
20
+ Object.keys(nuxtApp.payload.data ?? {}),
21
+ )
22
refreshNuxtData()
23
})
24
}
0 commit comments