Got this error message on the console
The resource "xxx.svg" 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
asvalue and it is preloaded intentionally.
And here is my code
import Image from 'next/image' <Image src={xxx} width={32} height={24} priority /> I expect to do the correct next image rendering with Priority attribute without the warning message.

