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 - Call
collection.preload()in the route loader - Use
useLiveQueryin the component
TanStack Start
Global SSR disable
// start.tsx
import { createStart } from '@tanstack/react-start'
Related skills