Using an Image as a logo on my navbar no working

I’m unable to use an image as a logo on my navbar. the workspace project name is Customer Crud. I’m new on NODERUN, how can I do this. In node js I put the image on the public folder, declare the static middleware and add the link to the image on the navbar and it works without any problem but in NODERUN I don’t now how to.

In NodeRun, the static middleware is automatically created for the public folder. So, all you have to do is link to the image properly. For example:

src="public/images/mylogo.jpeg"

Thank you that worked