Forum Discussion
karlsandin
9 years agoRegular Visitor
Import custom local font?
I am trying to import a local font but I keep on getting a console error: "@font-face failed cross-origin request. Resource access is restricted." Is it possible at all to import a custom fon...
- 9 years ago
Google "Access-Control-Allow-Origin" to learn more about this issue. Instead, you may use Google Fonts.
v-chuncz-msft
9 years agoCommunity Support
Google "Access-Control-Allow-Origin" to learn more about this issue. Instead, you may use Google Fonts.
- karlsandin9 years agoRegular Visitor
Thanks for the answer!
I tried using Google fonts and using:
"@import url('https://fonts.googleapis.com/css?family=Lato')"
in my visual.less.
But it keeps on fallbacking to the original fonts (Arial etc)...
Any idea how to fix this?
- v-chuncz-msft9 years agoCommunity Support
Based on my test, you need to import it as .less file.
@import (less) url('https://fonts.googleapis.com/css?family=Lato');- karlsandin9 years agoRegular Visitor
Works like charm!
Thanks alot for taking the time to help me with this, very much appreciated!