mango-v4-ui/pages/_document.tsx

28 lines
676 B
TypeScript
Raw Normal View History

2022-06-21 03:58:57 -07:00
import Document, { Html, Head, Main, NextScript } from 'next/document'
2022-09-13 23:24:26 -07:00
import Script from 'next/script'
2022-06-21 03:58:57 -07:00
class MyDocument extends Document {
render() {
return (
<Html>
<Head>
2022-09-18 16:01:57 -07:00
{/* <link
2022-12-12 17:50:10 -08:00
href="https://fonts.googleapis.com/css2?family=Lato:wght@200;300;400;500;600;700&display=swap"
2022-09-13 23:24:26 -07:00
rel="stylesheet"
2022-12-12 17:50:10 -08:00
/> */}
2022-09-13 23:24:26 -07:00
<Script
src="/datafeeds/udf/dist/bundle.js"
strategy="beforeInteractive"
></Script>
2022-06-21 03:58:57 -07:00
</Head>
2022-12-19 23:00:54 -08:00
<body className="hide-scroll bg-th-bkg-1">
2022-06-21 03:58:57 -07:00
<Main />
<NextScript />
</body>
</Html>
)
}
}
export default MyDocument