next.js/test/integration/next-image-new/default/pages/edge.js
edge.js17 lines292 B
import Image from 'next/image'

import profilePic from '../public/small.jpg'

export const runtime = 'experimental-edge'

function About() {
  return (
    <>
      <h1>edge</h1>
      <Image src={profilePic} alt="Picture of the author in edge runtime" />
    </>
  )
}

export default About
Quest for Codev2.0.0
/
SIGN IN