Hi,
So I am having a ton of trouble getting my custom fonts to work on either the preview domain or the temp domain I have setup:
https://5fc9ae8145423d000893d7c9–trusting-poitras-d0b5a3.netlify.app
console errors are viewable if you open up dev tools, it wouldn’t let me post them as it interpreted too many links.
same errors on the temp domain: new.cromon.co.uk
I have a netlify.toml file that contains this:
[[headers]]
for = “/"
[headers.values]
Access-Control-Allow-Origin = "”
have tried various combinations of /src/assets/fonts/, /assets/ etc etc
All these fonts are getting imported in my main.css file as normal eg:
@font-face {
font-family: 'Manrope';
src: url('/assets/fonts/manrope-extrabold.woff2') format('woff2'),
url('/assets/fonts/manrope-extrabold.woff') format('woff'),
url('/assets/fonts/manrope-extrabold.otf') format('truetype');
font-style: normal;
font-weight: 800;
}
I am super stuck with these errors.
I can provide the src code if needed, there is nothing but static stuff in there (no keys or anything)
thanks
Eugene