How do image transformation billing work?
I dont believe Im transforming them, but Im looking at 50ish image transformations
Im just using
export const getFilePreview = async (fileId: string) => {
const fileUrl = storage.getFilePreview(appwriteConfig.storageId, fileId);
return fileUrl as string;
};
Also, show i be storing the entire storage.getFilePreview returned link in my db or just my fileId? I want to reduce bandwidth and I believe storage.getFilePreview uses up the bandwidth (does it?)
Recommended threads
- appwrite auth problem regarding the sess...
Hi, I have problem with auth. When I try to login/signup using OTP, at the end session.secret is empty, i have searched online and in the docs but i cannot find...
- log out failure
I am trying to set up the user sign up/log in/log out and while I have got the sign up/log in to work, log out keeps failing. i am keeping it simple with only r...
- Column size update error – "Invalid inde...
Hey everyone, I’m running into an issue when trying to update the size of an existing column in my Appwrite database. I’m trying to change the size from 30 to 5...