Created
October 26, 2022 13:57
-
-
Save officialrajdeepsingh/fe844f340f639a14758b8b54ac27f9be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Html, Head, Main, NextScript } from 'next/document' | |
export default function Document() { | |
return ( | |
<Html> | |
<Head> | |
<link | |
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | |
rel="stylesheet" | |
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" | |
crossOrigin="anonymous" | |
/> | |
</Head> | |
<body> | |
<Main /> | |
<NextScript /> | |
<script | |
src="https://cdn.jsdelivr.net/npm/[email protected]/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