I have used yeoman generator for the project structure and included bower components for font-awesome and Roboto. The fonts load fine on grunt serve. I have also tried running the index.html created in the dist folder which again works fine. Even the .WAR file created using Jenkins build when hosted on my local tomcat work fine. But when the code is deployed on Server Roboto and Font-awesome do not render properly. I have checked the network tab to see if fonts are getting downloaded which is visible. Can someone point me in the right direction ?
IE issue for font-awesome and Roboto not working on Server
513 Views Asked by Prachi At
1
There are 1 best solutions below
Related Questions in INTERNET-EXPLORER
- How do I wrap text in a pre tag for Internet explorer?
- How do I extract info from crunchbase
- Jquery on submit ajax post needs two clicks in IE
- SSL certificate error 403.13 in IIS 7.5
- Hiding Script Errors popups in IE8
- Internet explorer 11 browser cannot display the expires value of the session cookie from my app
- Internet Explorer hover/rgba/opacity/css3 compatibility
- How to wait for a java applet to load when automating Internet Explorer?
- Javascript Event.originalEvent.path IE8 error
- cursor: copy not working in Internet Expoler
- input[type="submit"][disabled] not working for IE8
- Auothotkey: Remove string, placement string in subject box
- Why does IE show junk for my dasBlog blog?
- Lag in scrolling behavior on IE 10 and IE Edge modes
- Using angularJS click on enter form functionality in Internet Explorer
Related Questions in YEOMAN-GENERATOR
- Easiest way to create MEAN app
- How can I debug a Yeoman generator KO (with typescript and gulp) Node JS project in Visual studio with Node JS Tools for visual studio
- Yeoman - Gruntfile.js generates source map at build but deletes it after any changes
- Error: EACCESS, permission denied at Object.fs.mkdirSync
- Spring-boot configuration
- Using webpack to bundle a custom yeoman generator
- Yeoman Generator: Copy template to root directory based on prompt choice
- Grunt-angular-templates - Don't compile html templates into single JS File
- Gulp and wire dep not injecting file type *.*.js files
- dotnet restore cmd failing - error MSB4019 - \DotNet\Microsoft.DotNet.Props file missing #5175
- Updating Gulp plugins
- Grunt usemin does not move javascript dependecies when build
- How to install or use yo generator-jhipster 2.0 (the new branch 2.0)
- Yeoman.io with nested prompts produces undefined error in Inquirer.js
- Using two yeoman generators?
Related Questions in ROBOTO
- why some thin character roboto ?
- Vue cli and vuetify how to use with local Roboto font
- WPF - Problem accessing Roboto fonts by font name
- Roboto supporting capital sharp s (ẞ)
- Firefox an IE renders fonts badly, eg Roboto font
- Bootsrap 3.3.6 via MAXCDN customise font family using custom.css
- Do I really need to load Roboto font when using MUI?
- Hosting Roboto Font in nextjs
- When implementing localization in a WPF application, how would I know if Roboto would not be compatible with the language?
- Use Roboto font in IE 11 / Edge
- As the Roboto font family is updated, do its metrics ever change?
- Email is not showing google Roboto Fonts in Microsoft Outlook 2016
- font roboto doesn't work
- Android Black Roboto font style
- Roboto font in Chrome is not shown properly
Related Questions in FONTAWESOME-4.4.0
- Font awesome icons disable getting square only
- CSS hover 2 icons
- Rewriting glyphicon code for Font Awesome
- Font awesome icon in placeholder not showing up unless font weight set to 600
- Unicode characters for font awesome 'search' not showing up after upgrading Font Awesome
- Using jquery validation 1.17.0 with Bootstrap 4.0.0 beta
- fontawesome blocked by CORS policy
- Generate a PDF using node, pdfkit and fontawesome?
- Add fontawesome icons into select2 V4 dropdown items
- Can I Override An Existing Font Awesome CSS Icon?
- How to create Angular JS ON-OFF Switch
- i am trying to add social media buttons on django template (html file), but bootstrap4 seems to be interfering with the social media icons
- remove font-awesome from landing page of site (Wordpress)
- IE issue for font-awesome and Roboto not working on Server
- How to use Font Awesome 5 icons in Laravel 6
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
perhaps not a complete answer, but hopefully it helps... I've had a similar problem the cause of my troubles was that by default all intranet sites in IE were running in compatibility mode. When I explicitly disabled that option the fonts worked fine.
If that is your problem this tag will force IE not to use compatibility mode
<meta http-equiv="X-UA-Compatible" content="IE=Edge">