I am currently referencing my CSS stylesheet in the following way:
<link rel="stylesheet" type="text/css" href='@routes.Assets.versioned("stylesheets/main.css")' media="screen" />
The location of the stylesheet is found at /public/stylesheets/main.css
.
This is the content of the stylesheet:
body {
background-image: @routes.Assets.versioned("images/deer.jpg");
}
Although there are no errors, the background image is not displaying. What could be causing this issue?