fix: docs build (#1203)

This commit is contained in:
Mo
2022-07-04 15:42:47 -05:00
committed by GitHub
parent f11b8e163c
commit 66d5dce5e1
267 changed files with 43 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';
const CanonicalUrl = ({ canonicalUrl }) => (
<Head>
<link rel="canonical" href={canonicalUrl} />
</Head>
);
export default CanonicalUrl;