Store.delete
Deletes an object from the store by key.
Store.delete(key) → Promise<void>
Deletes the object at a key. Because dev and prod share one live store, a dev run can remove what production serves; there is no bulk clear, by design.
Parameters
key
string
RequiredThe object's key within the store.
Delete an object
await Uploads.delete(key);