We use any S3 compatible storage for our files, you can use the useStorage
composable to access the storage and perform CRUD operations.
// GET
const files = await useStorage().list();
// POST
const file = await useStorage().upload("file.png");
// UPDATE
await useStorage().update("file.png", { name: "new-name.png" });
// DELETE
await useStorage().delete("file.png");