next.js/test/development/pages-dir/client-navigation/fixture/pages/head-priority.js
head-priority.js15 lines350 B
import Head from 'next/head'

export default () => {
  return (
    <div>
      <Head>
        <meta charSet="iso-8859-5" />
        <meta name="viewport" content="width=device-width,initial-scale=1" />
        <meta name="title" content="head title" />
      </Head>
      <p>next/head should be placed above the document/head.</p>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN