#Fonts are load doubled?!
9 messages Β· Page 1 of 1 (latest)
Is this in production or dev?
Both π
Weird. How are you loading your fonts? In DocumentHead or some other way?
Im working with tailwindd π
could your tailwind confs import them twice ?
Yep I think thats was the problem.
My global CSS:
@import "./Theme/css/theme.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
...
}
}
...
My theme css:
But here I dont include the font face, I think its the @tailwind ...
@tailwind base;
@tailwind components;
@tailwind utilities;
...
what @tailwind does behind the scene ?
I dont know π