In my project I need to add image uploading functionality to let users to upload images they wanted. What is the best practice to organize the uploading?
I tried to save the images (using Node.js) in the local folder (that is the 'assets' folder of my Angular project).
The problem is when I add images from my project's 'add' page and navigating back to my main page Angular can't find the images by their's paths (from 'assets' folder) without project rebuilding (ng serve). How can I solve this?