Currently, for things like background images, our css files do not have a specified domain. This works both in our development environment and in the production environment.
background-image: url(/images/bg.png);
For performance reasons (domain without cookies) we would like to include this:
background-image: url(http:
Ideally, we will not hard code them, so our development environments can still be retrieved locally.
Any thoughts on how best to achieve this?
source share