I use Akita Stores to save the state of my Angular application into local storages. I am trying to save some base64 images, but got this error. ERROR Error: Uncaught (in promise): QuotaExceededError: Failed to execute 'setItem' on 'Storage': Setting the value of 'AkitaStores' exceeded the quota. Is there any workaround to raise the quota of the AkitaStores? I tried to read their official documentation but could not find any information about this.
#QuotaExceededError: Setting the value of 'AkitaStores' exceeded the quota.
4 messages · Page 1 of 1 (latest)
Don't store images in local storage. Store them on the server, and store their ID/URL in local storage.
should I save an image to the server every time the user uploaded an image?