next.js/test/e2e/app-dir/next-image-src-with-query-without-local-patterns/app/page.tsx
page.tsx7 lines204 B
import Image from 'next/image'

export default function Page() {
  // src with query without localPatterns will throw an error
  return <Image src="/test.png?v=1" alt="test" width={100} height={100} />
}
Quest for Codev2.0.0
/
SIGN IN