I saw this
and I add favicon like this
import path from 'path';
import React from 'react';
export default {
Document: ({
Html,
Head,
Body,
children,
state: { siteData, renderMeta },
}) => (
<Html lang="en-US">
<Head>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="icon" href="favicon.ico" />
</Head>
<Body>{children}</Body>
</Html>
),
plugins: [
...
],
}
but is not working
Perhaps the image is not working properly in A. I tried to put the image inside the <body>
but it didn't come out properly.