so i tried to serve images folder staticly with express
app.use('/uploads', express.static(path.join(__dirname, '/uploads')))
but the images is not getting rendered and i get this error at the console:
"Not allowed to load local resource"
i tried to move the uploads folder into the "public" folder but it did nothing.