Right inside of body tag I have svg sprites
<svg version="1.1" width="0" height="0" style="position: absolute;">
<symbol id="icon-mail" viewBox="0 0 15 13">
...
</symbol>
</svg>
And I use it inside angular 2 app like this
<svg class="icon"><use xlink:href="#icon-mail" /></svg>
If I load main page for example localhost:9000
sprites are rendered, but if I fully load other url localhost:9000/users
sprites are not rendered.
What is the best way using sprites in angular 2 app?