next.js/test/e2e/app-dir/next-image/app/legacy/page.js
page.js12 lines252 B
import Image from 'next/legacy/image'
import testPng from '../../images/test.png'

export default function LegacyPage() {
  return (
    <>
      <h2>app-legacy-page</h2>
      <Image id="app-legacy-page" src={testPng} loading="eager" />
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN