我正在开发一个版本为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.
错误的数量正在增加。
控制台截图:
1条答案
按热度按时间7rtdyuoh1#
从警告图像中看,它看起来像是您正在预加载css文件。使用preload时,需要指定
href
和as
属性。我想你没有添加as
属性。像这样加起来。查看此document以了解更多详细信息