1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-21 17:36:52 +01:00

nanostores fixes

This commit is contained in:
Matthias Kretschmann 2024-06-22 14:53:42 +01:00
parent 14d0300272
commit 9c3dbbf0ea
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -19,6 +19,6 @@ export type LocationStore =
const url = 'https://location.kremalicious.com'
export const $location = createFetcherStore<LocationStore>([url], {
refetchOnReconnect: true,
refetchOnFocus: true
revalidateOnReconnect: true,
revalidateOnFocus: true
})