2022-08-31 04:35:46 +00:00
|
|
|
import { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
2022-11-08 07:23:38 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2022-08-31 04:35:46 +00:00
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="https://static.vega.xyz/AlphaLyrae-Medium.woff2"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
|
|
|
crossOrigin="anonymous"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/x-icon"
|
|
|
|
href="https://static.vega.xyz/favicon.ico"
|
|
|
|
/>
|
|
|
|
<link rel="stylesheet" href="https://static.vega.xyz/fonts.css" />
|
2022-09-02 10:27:28 +00:00
|
|
|
<script
|
|
|
|
src="https://static.vega.xyz/theme.js"
|
|
|
|
type="text/javascript"
|
|
|
|
async
|
|
|
|
/>
|
2022-08-31 04:35:46 +00:00
|
|
|
{['1', 'true'].includes(process.env['NX_USE_ENV_OVERRIDES'] || '') ? (
|
|
|
|
/* eslint-disable-next-line @next/next/no-sync-scripts */
|
|
|
|
<script src="/assets/env-config.js" type="text/javascript" />
|
|
|
|
) : null}
|
|
|
|
</Head>
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
);
|
|
|
|
}
|