I am using Single SPA with angular and I am trying to import a font in my css file using src
@font-face {
font-family: "Effra";
src: url("//example/assets/fonts/effra/Effra-BoldItalic.woff2")
format("woff2"),
url("//example/assets/fonts/effra/Effra-BoldItalic.woff")
format("woff");
}
But since I am using Single-SPA, this won't work, So is there a specific path I should be using to get this import work?