Skip to content

Commit

Permalink
fix(Meta): COM-2905 fix canonical path
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtyomResh committed Oct 27, 2020
1 parent 7dd695f commit 87781bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Meta.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withRouter } from 'next/router'

const Meta = ({ router }) => (
<Head>
<link rel="canonical" href={`https://blog.csssr.com/${router.asPath}`} />
<link rel="canonical" href={`https://blog.csssr.com${router.asPath}`} />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-48x48.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png" />
Expand Down

0 comments on commit 87781bd

Please sign in to comment.