如何让 MERN 应用程序上的 Set-Cookie 警告消失?

How can I make Set-Cookie warning disappear on MERN app?

所以我有一个使用 MERN 堆栈制作的应用程序,我在 server.js

上设置了下一个代码
app.get("*", (req, res) => {
  res.setHeader("Set-Cookie", "HttpOnly;Secure;SameSite=Strict");
  res.sendFile(path.resolve(__dirname, "client", "build", "index.html"));
});

但我一直在 chrome 上看到警告 "A cookie associated with a cross-site resource at http://fontawesome.com/ was set without the SameSite attribute."

我的一些 CSS 在构建后无法正常工作,所以我不知道这是否会在某些方面产生影响。

该 cookie 与 fontawesome.com 域相关联,这意味着他们负责更新此属性。那里的团队已经意识到这个问题并更新了他们的代码。您可以查看 this issue on their GitHub 了解更多上下文。