I've posted to forums.meteor here:
Meteor forums
After building the meteor app and deploying to the web server, my images are nowhere to be found on the server. When I try to find one of the images that should be there I get no results
find ./ -name Electrical-1.png -print
Do I need to do something in particular to build?
Here is the meteor project. It works locally, but fails when I build it for deployment
Well, I found a work-around (unless this is the intended functionality of this library).
I setup the storagePath as a variable in Meteor.settings
After copying the build to the server, I then copied the plans directory to /home/sid/ manually.
Seems to work.
Hello @sidkdbl07 ,
Sorry for delay, yes this is expected behavior.
You can create /home/sid/plans directory on local (dev) machine, and then hard-code it to storagePath
Closed due to silence at issue owner end.
Feel free to reopen it in case if the issue still persists on your end.
Most helpful comment
Well, I found a work-around (unless this is the intended functionality of this library).
I setup the storagePath as a variable in Meteor.settings
After copying the build to the server, I then copied the plans directory to /home/sid/ manually.
Seems to work.