Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
667 views
in Technique[技术] by (71.8m points)

Import fonts in Sage 9.0.10 - WordPress

Since upgrading to Sage 9.0.10, I can't import my fonts. All my fonts (.woff & woff2) are in assets>fonts, in main.scss @import "base/fonts" and in fonts.scss I have this:

@font-face {
  font-family: "Font";
  src: url("/../fonts/Font-name.woff2") format ("woff2"), url("/../fonts/Font-name.woff") 
  format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

With this, I have no error when I compile. I don't have this problem on my other projects. I tested lots of things, modified the path or changed folder etc.

Maybe I have forgotten a little thing, thank you so much.

question from:https://stackoverflow.com/questions/65841630/import-fonts-in-sage-9-0-10-wordpress

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Not sure whether that matters but how about removing the extra newline in the src part:

@font-face {
  font-family: "Font";
  src: url("/../fonts/Font-name.woff2") format ("woff2"), url("/../fonts/Font-name.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...