我正在開(kāi)發(fā)一個(gè)版本為13.4的Next.js應(yīng)用程序,我在控制臺(tái)中收到了以下警告:
The resource <URL> was preloaded using link preload but not used within a few seconds from the window’s load event. Please make sure it has an appropriate as value and it is preloaded intentionally.
錯(cuò)誤的數(shù)量正在增加。
控制臺(tái)截圖:
從警告圖像來(lái)看,似乎你正在預(yù)加載css文件。使用preload時(shí),需要指定href和as屬性。我認(rèn)為你沒(méi)有添加as屬性。 像這樣添加它們。
<link rel="preload" href="style.css" as="style" />
查看此文檔以了解更多詳細(xì)信息