Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Created August 18, 2020 15:44
Show Gist options
  • Save dipeshhkc/e5dd8fb1b1f15af17af172016a0f4c47 to your computer and use it in GitHub Desktop.
Save dipeshhkc/e5dd8fb1b1f15af17af172016a0f4c47 to your computer and use it in GitHub Desktop.
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
render() {
return (
<Html>
<Head>
<link rel="icon" href="link to favicon" />
<link href="link to font" rel="stylesheet">
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment