TanStackT
TanStack4y ago
9 replies
urgent-maroon

Prefetch Query error - Next.js

Hi everyone.
I'm currently have this error when try prefetch a query on
getServerSideProps
.
This is my code:
export const getServerSideProps: GetServerSideProps = async (ctx) => {
    await queryClient.prefetchQuery({
        queryKey: ["customers"],
        queryFn: getCustomers,
    });

    return {
        props: {
            dehydratedState: dehydrate(queryClient),
        }
    }
}

Anyone can help me?
image.png
Was this page helpful?