AssetsManager problem

Hi Everyone,

I have the following problem:

I installed a third party library through composer, it is installed under vendor/bower/flexslider. So far so good. The CSS contains the following:




@font-face {

  font-family: 'flexslider-icon';

  src: url('fonts/flexslider-icon.eot');

  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');

  font-weight: normal;

  font-style: normal;

}



When I compress and minify that file with yuicompressor the resulting file urls change to something like src: url(‘assets/80f9c689/fonts/flexslider-icon.eot’);

This works perfect on my local environment, but when I deploy to production the names of the directories are different and those files are not found.

Any suggestions?

Thanks