I simply want to give my html
a CSS background image.
I tried setting it to this:
html {background-image: url('/assets/background.jpg')}
which worked on development, but then when assets are compiled into the Public
folder, it's no longer the correct path. This:
html {background-image: url('background.jpg')}
doesn't even work on development.
I'm pretty confused because nobody seems to have had this same problem, but it seems like it should be a pretty common one.
Any light shed would be much appreciated.