import { useLegacyStore } from '@warp-drive/legacy'; import { JSONAPICache } from '@warp-drive/json-api'; const Store = useLegacyStore({ linksMode: false, cache: JSONAPICache, handlers: [ // -- your handlers here ], schemas: [ // -- your schemas here ], }); type Store = InstanceType; export default Store;