I\'m aware of the SO threads about this (I\'ve linked them below), but unfortunately I couldn\'t solve this with them, so please allow me this question :-)
I\'ve bootst
Finally, I figured it out :)
I pinned down cssmin to be the bad guy in this game: It was responsible for writing the .tmp paths into the final css file. To solve this, I added the noRebase: true,
option to the cssmin task in Gruntfile.js .
To get along with the font references, I also used the copy task to copy the fonts into my dist folder and had to use $icon-font-path: "../fonts/"
to have it finally in the right format.
Maybe this will help someone stuck in a similar situation :-)