I created a simple Angular library and I want my library to also display an image. The problem is that if I include the image inside the module folder of my library and then refer to it from inside the module, I get 404 error. As far as I know, in an Angular project images must be placed inside /assets folder, but I really need to include this image in my library.
I placed the image inside the module folder and refered to it from a the .html
file of my module component:<img src="myImage.png">
, but it doesn't work.