Skip to content

Instantly share code, notes, and snippets.

@officialrajdeepsingh
Created October 26, 2022 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save officialrajdeepsingh/fe844f340f639a14758b8b54ac27f9be to your computer and use it in GitHub Desktop.
Save officialrajdeepsingh/fe844f340f639a14758b8b54ac27f9be to your computer and use it in GitHub Desktop.
import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html>
<Head>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossOrigin="anonymous"
/>
</Head>
<body>
<Main />
<NextScript />
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossOrigin="anonymous"
/>
</body>
</Html>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment