I included the line
background-image: url(/img/bg.svg);
in my CSS file.
During development mode, this resolves to src/img/bg.svg
since the stylesheet is located at src/css/components/styles.css
.
However, when I switch to production mode, I encounter a 404 error in the console stating that bg.svg
was not found.
What could be the issue here?