export const useAccountSession = () => useFetch(
"/api/auth/session",
{
transform: (input) => input === undefined ? false as any as null: input,
getCachedData(key, nuxtApp) {
return nuxtApp.payload.data[key];
},
}
);