URL to use for Images stored in module

0
I want to use an image stored in one of my modules as a background image in a standard hero header building block.  I plan to use CSS background-image: url( … ); but need to know what the URL is to the Images folder in specific module.    
asked
1 answers
0

You can put it in the recources folder within your theme folder. Then you can use the following css:

background: url("../../../resources/image.jpg")

answered