I am working on an MVC5 project. When I created a project, I decided to move the fonts into the Content folder to keep my root folder clean. This meant I had to update some of the paths in the projects, CSS files.
Now today when I deployed to Azure, couple of elements were missing. I managed to track it down and I updated:
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') etc.....;
}
by removing "../" from the beginning of the url in the files bootstrap.min.css and bootstrap.min.css.map.
Is this ok? Is there another easier way to update these URL?