Chrome 如何修复Next.js应用中的链接预加载警告?

xriantvc  于 2023-05-11  发布在  Go
关注(0)|答案(1)|浏览(279)

我正在开发一个版本为13.4的Next.js应用程序,我在控制台中收到以下警告:

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.

错误的数量正在增加。
控制台截图:

7rtdyuoh

7rtdyuoh1#

从警告图像中看,它看起来像是您正在预加载css文件。使用preload时,需要指定hrefas属性。我想你没有添加as属性。像这样加起来。

<link rel="preload" href="style.css" as="style" />

查看此document以了解更多详细信息

相关问题