35 lines
		
	
	
		
			978 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			978 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import Document, { Html, Head, Main, NextScript, DocumentContext } from 'next/document'
 | 
						|
 | 
						|
import { globalStyles, getCssText } from '../stitches.config'
 | 
						|
 | 
						|
class MyDocument extends Document {
 | 
						|
  static async getInitialProps(ctx: DocumentContext) {
 | 
						|
    const initialProps = await Document.getInitialProps(ctx)
 | 
						|
 | 
						|
    return initialProps
 | 
						|
  }
 | 
						|
  render() {
 | 
						|
    globalStyles()
 | 
						|
 | 
						|
    return (
 | 
						|
      <Html>
 | 
						|
        <Head>
 | 
						|
          <style id="stitches" dangerouslySetInnerHTML={{ __html: getCssText() }} />
 | 
						|
          <link rel="preconnect" href="https://fonts.googleapis.com" />
 | 
						|
          <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
 | 
						|
          <link
 | 
						|
            href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Work+Sans:wght@400;600;700&display=swap"
 | 
						|
            rel="stylesheet"
 | 
						|
          />
 | 
						|
        </Head>
 | 
						|
        <body>
 | 
						|
          <Main />
 | 
						|
          <NextScript />
 | 
						|
        </body>
 | 
						|
      </Html>
 | 
						|
    )
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default MyDocument
 |