Skip to content

Commit

Permalink
adds crossorigin to google font links
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Jun 15, 2023
1 parent 3e56b8b commit b3bf465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/helmet.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const desc = "The most comprehensive visualization of U.S. public data. Data USA
export default {
link: [
{rel: "icon", href: "/images/favicon.ico?v=3"},
{rel: "preconnect", href: "https://fonts.gstatic.com/", crossorigin: ""},
{rel: "stylesheet", href: "https://fonts.googleapis.com/css?family=Lato:300|Palanquin:300,400,500,600,700|Source+Sans+Pro:300,400|Pathway+Gothic+One"}
{rel: "preconnect", href: "https://fonts.gstatic.com/", crossorigin: "anonymous"},
{rel: "stylesheet", href: "https://fonts.googleapis.com/css?family=Lato:300|Palanquin:300,400,500,600,700|Source+Sans+Pro:300,400|Pathway+Gothic+One", crossorigin: "anonymous"}
],
meta: [
{charset: "utf-8"},
Expand Down

0 comments on commit b3bf465

Please sign in to comment.