rsnext/test/integration/amphtml/pages/manual-rels.js

16 lines
317 B
JavaScript
Raw Normal View History

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>
</>
)