Forum Discussion
Emma
9 years agoFrequent Visitor
CORS error when viewing Published PowerBI Report
Hello, I'm using app.powerbi.com in Chrome. I'm getting errors in the JS console telling me I can't access two font files (.woff and .ttf) because they have been blocked by a CORS policy (http://enab...
v-micsh-msft
9 years agoMicrosoft Employee
Hi Emma & joemensor,
I have already reported this issue and tried to involve someone more familiar with this topic to a further look at this issue. There might be sometime Delay regarding the job transferring. Your patience is greatly appreciated.
Thanks for your understanding and support.
Regards
Venura
9 years agoFrequent Visitor
Hi
Is there a update on this issue.
Thanks
Ven
- Venura9 years agoFrequent Visitor
Hi,
For anyone else that needs a work around here is what I have done. This now works:
I changed:
@font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); }To:
@font-face { font-family: 'Glyphicons Halflings'; src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot'); src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff') format('woff'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); }which points to the full url of the fonts.
Hope this help some.
Thanks
Ven