mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-24 21:57:53 -05:00
19 lines
488 B
TypeScript
19 lines
488 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
import { ENV_CONFIG } from 'common/envs/constants'
|
|
import Script from 'next/script'
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<link rel="icon" href={ENV_CONFIG.faviconPath} />
|
|
<Script src="/init-theme.js" strategy="beforeInteractive" />
|
|
</Head>
|
|
<body className="body-bg text-ink-1000">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|