next.js/test/integration/next-image-new/export-config/pages/index.js
index.js15 lines306 B
import React from 'react'
import Image from 'next/image'

const Page = () => {
  return (
    <div>
      <h1>Export Config</h1>
      <p>This page should error since you can't export images</p>
      <Image id="i" alt="i" src="/test.webp" width={200} height={200} />
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN