Errore CORS durante il caricamento di un font personalizzato

Sto cercando di utilizzare un font speciale in uno dei componenti del mio tema. Ho seguito le istruzioni in questo post:

Ecco il CSS del mio componente:

@font-face {
  font-family: 'northwood';
  font-style: regular;
  src: url($northwoodhigh) format('woff2');
}

.category-list tbody .category h3 a[href] {
    color: #ccc;
    font-family: 'northwood', cursive;
    font-size: 135%;
    word-spacing: 3px;
}

Ho aggiunto l’URL di Cloudfront alle impostazioni CORS in questo modo:

Ma non funziona: purtroppo, quando carico una pagina con quel CSS, ottengo un errore “Cross-origin request blocked” nella console:

7d26013f5bcde40cc8778378940e1e53_Image 2020-04-25 at 6.38.04 PM

(Scusa per l’immagine molto piccola.) Qualcuno ha qualche consiglio? Sono bloccato.

Do you have the DISCOURSE_ENABLE_CORS in your app.yml as suggests the description?

1 Mi Piace

Not sure – is there a way to check? (I’m on a hosted instance of Discourse, so I can’t look at the config files directly.)

Edit: I emailed our hosting provider to see if that’s the problem.

Update: my hosting provider confirms that DISCOURSE_ENABLE_CORS is set to TRUE.

So, I’m still baffled.

I just tried this, just like you described, on a site with a CDN setup and it worked. So, I think this might be limited to your site.

I think the DISCOURSE_ENABLE_CORS setting is the inverse of what you want. Adding domains to that setting will allow requests from those domains access to your Discourse domain, not the other way around.

What you want is to allow requests from your Discourse domain to get access to the file on your CDN. I think your CDN is blocking those requests. You can confirm that by running something like this in a terminal window, after you change the values of course.

curl -H "origin: YOUR_SITE_URL" -v "PATH_TO_THE_FONT_ON_YOUR_CDN"

If everything is setup correctly, you should see something like this in the response headers

Access-Control-Allow-Origin: *
2 Mi Piace