meta-framework
Installation
SKILL.md
This skill builds on db-core. Read it first for collection setup and query builder.
TanStack DB — Meta-Framework Integration
Setup
TanStack DB collections are client-side only. SSR is not implemented. Routes using TanStack DB must disable SSR. The setup pattern is:
- Set
ssr: falseon the route - Preload the eager collection, or preload the live query for an on-demand source
- Use
useLiveQueryin the component
TanStack Start
Global SSR disable
// start.tsx
import { createStart } from '@tanstack/react-start'