I have a reference inside my CSS file that refers to a static image:
#logo { background: url(\'/static/logo.png\') }
This works just fi
You can move any CSS that contains static file paths to inline CSS, contained in the template.
i.e.
The catch here is that it won't work for @media queries, you'd need to put those in a block, e.g.