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
514 Views Asked by Prachi At
1
There are 1 best solutions below
Related Questions in INTERNET-EXPLORER
- VBA, Internet Explorer and Javascript
- Inefficient driver.get() performance in Loops with IEDriver
- NEXT JS -unpecified error on ecternal calls
- Internet Explorer fails to launch via Selenium
- IE Mode Edge driver stuck on 'This is the initial start page for the WebDriver server' when running in Elevated Mode (Admin Mode) [Selenium]
- Can open new window in different browser?
- unable to get the right object to set the windowState
- Filters to apply for an application that can only run on IE compatibility
- How to accept popup message from Edge in IE mode Python - Selenium
- Does anyone know why i cannot see the source code of a website while in Internet Explorer mode in Microsoft Edge?
- Protected Mode settings are not the same for all zones (SELENIUM) (IE MODE IN EDGE)
- Browser Compatibility for WebTransport
- Internet Explorer don't POST
- Microsoft Edge API and IE Mode
- Close security screen alert Internet Explorer Pop-up using VBA and Windows API
Related Questions in YEOMAN-GENERATOR
- VSCode running "yo code" gives me an ERR_MODULE_NOT_FOUND error
- Blueprint migration problems to JHipster 8
- Outlook Add-In - Problem importing/executing function from different module
- How to compose existing generators in our own ESM-based generator
- Error express-simple , primordials is not defined
- How to create exe file from a office.js add-in
- Show CommandSet Button if more than 1 row is selected in SharePoint Online SPFx Yeoman generator 1.18.2
- SPFx Yeoman Generator not Showing SharePoint 2019 Option
- This generator XXX requires yeoman-environment at least 4.0.0-rc.0, and the current version is 3.19.3
- Cannot require/import while creating yeoman generator
- Debug configuration for debugging yeoman generator in vscode
- Add prefix to localhost base url in Office add-in react application
- npm-wp-s-theme domain.enter is not a function error
- Verdaccio: How to add custom generated auth plugin in config.yml of local registry
- Webpack: Localhost refused to connect
Related Questions in ROBOTO
- Microsoft Edge won't render the correct font
- Why when I use custom Material 3 ThemeData for my widget like ElevatedButton, it displays font family Roboto-regular weight 500 instead Roboto?
- Properly embedding font in PDF using PDFBox 3.0.0.alpha3 and incremental saving
- Removing non-used default font from flutter projects
- flutter: Failed to load font Roboto at https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf
- Do I really need to load Roboto font when using MUI?
- Tabulator character (\t) not printing with Roboto font in jsPDF
- font-weight goes normal for Italic Text using Roboto Font Family
- How to have roboto font in bookdown::pdf_document2?
- When implementing localization in a WPF application, how would I know if Roboto would not be compatible with the language?
- Hosting Roboto Font in nextjs
- Unicode playing card symbols not displayed in mobile browser
- Convert local font to Google Fonts CDN
- Roboto Flex variable font in greek
- How to get QML FontLoader to load UTF-8 on boot
Related Questions in FONTAWESOME-4.4.0
- "npm" can't resolve from npm.fontawesome.com
- remove font-awesome from landing page of site (Wordpress)
- i am trying to add social media buttons on django template (html file), but bootstrap4 seems to be interfering with the social media icons
- How to use Font Awesome 5 icons in Laravel 6
- Can I Override An Existing Font Awesome CSS Icon?
- CSS hover 2 icons
- 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
- Generate a PDF using node, pdfkit and fontawesome?
- Error using `npm install font-awesome`
- Webix button icons list required
- fontawesome blocked by CORS policy
- Using jquery validation 1.17.0 with Bootstrap 4.0.0 beta
- How to use font-awesome with node + express framework
- bootstrap and fontawesome icons not displaying on a page
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 # Hahtags
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">