File size: 317 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import Head from 'next/head'
import { useAmp } from 'next/amp'
export const config = { amp: 'hybrid' }
export default () => (
<>
<Head>
{!useAmp() && <link rel="amphtml" href="/my-custom-amphtml" />}
<link rel="canonical" href="/my-custom-canonical" />
</Head>
<p>Hello world</p>
</>
)
|