next.js/test/integration/telemetry/pages/edge.js
edge.js24 lines488 B
import Image from 'next/image'
import LegacyImage from 'next/legacy/image'
import profilePic from '../public/small.jpg'

export const config = {
  runtime: 'experimental-edge',
}

function About() {
  return (
    <>
      <h1>My Homepage</h1>
      <Image src={profilePic} alt="Picture of the author" />
      <p>Welcome to my homepage!</p>
    </>
  )
}

export default About

export function AboutFutureImage() {
  return <LegacyImage src={profilePic} alt="Picture of the author" />
}
Quest for Codev2.0.0
/
SIGN IN