next.js/test/integration/next-image-legacy/unoptimized/pages/index.js
index.js34 lines804 B
import React from 'react'
import Image from 'next/legacy/image'
import testJpg from '../public/test.jpg'

const Page = () => {
  return (
    <div>
      <h1>Unoptimized Config</h1>
      <p>Scroll down...</p>
      <div style={{ height: '1000vh' }} />
      <Image id="internal-image" src="/test.png" width={400} height={400} />
      <br />
      <Image id="static-image" src={testJpg} width={400} height={400} />
      <br />
      <Image
        id="external-image"
        src="https://image-optimization-test.vercel.app/test.jpg"
        width={400}
        height={400}
      />
      <div style={{ height: '1000vh' }} />
      <Image
        id="eager-image"
        src="/test.webp"
        width={400}
        height={400}
        loading="eager"
      />
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN