You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am saving all my images in directory: storagePath: 'assets/uploads/avatars/' and after restart server directory with files disappear. All data still exist in collection but files are gone. Maybe I have to store images in another place?
The text was updated successfully, but these errors were encountered:
As meteor completely rebuild server directory after you've made changes on server-side all uploaded files will be removed. During development you may change storagePath option to something relative to your FS (/tmp/UploadedFiles) or relative to your user (~/tmp/..)
I am saving all my images in directory:
storagePath: 'assets/uploads/avatars/'
and after restart server directory with files disappear. All data still exist in collection but files are gone. Maybe I have to store images in another place?The text was updated successfully, but these errors were encountered: