Skip to content
Discussion options

You must be logged in to vote

You can use the loaderDeps field to access search params. See these docs.

// /routes/posts.tsx
export const Route = createFileRoute('/posts')({
  loaderDeps: ({ search: { offset, limit } }) => ({ offset, limit }),
  loader: ({ deps: { offset, limit } }) =>
    fetchPosts({
      offset,
      limit,
    }),
})

See this section for an explanation about why loaderDeps is necessary.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Jarzka
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants