next.js/test/e2e/app-dir/metadata-dynamic-routes/app/favicon.tsx
favicon.tsx24 lines455 B
// This file should be ignored
import { ImageResponse } from 'next/og'

export default function favicon() {
  return new ImageResponse(
    (
      <div
        style={{
          width: '100%',
          height: '100%',
          display: 'flex',
          alignItems: 'center',
          justifyContent: 'center',
          fontSize: 88,
          background: '#fff',
          color: '#000',
        }}
      >
        Favicon
      </div>
    )
  )
}
Quest for Codev2.0.0
/
SIGN IN