next.js/test/e2e/app-dir/metadata-icons/app/layout.tsx
layout.tsx21 lines397 B
import { ReactNode } from 'react'

export default function Root({ children }: { children: ReactNode }) {
  return (
    <html>
      <body>{children}</body>
    </html>
  )
}

export const metadata = {
  icons: {
    shortcut: '/shortcut-icon.png',
    apple: '/apple-icon.png',
    other: {
      rel: 'apple-touch-icon-precomposed',
      url: '/apple-touch-icon-precomposed.png',
    },
  },
}
Quest for Codev2.0.0
/
SIGN IN