[til] css-in-js, netx.js pages router

이진호·2024년 1월 23일
0

TIL

목록 보기
59/66

next.js는 ssr을 통해서 페이지를 제공할 때 css-in-js는 클라이언트단에서 실행되기 때문에 중간에 깜빡이는 현상이 발생한다. 이를 해결하기 위해서는 pages router에서 __document.tsx파일을 아래와 같이 코드를 작성하여 해결할 수 있다.

import Document, {
  DocumentContext,
  Head,
  Html,
  Main,
  NextScript,
} from "next/document";
import { ServerStyleSheet } from "styled-components";

export default class MyDocument extends Document {
  static async getInitialProps(ctx: DocumentContext) {
    const sheet = new ServerStyleSheet();
    const originalRenderPage = ctx.renderPage;

    try {
      ctx.renderPage = () =>
        originalRenderPage({
          enhanceApp: (App) => (props) =>
            sheet.collectStyles(<App {...props} />),
        });

      const initialProps = await Document.getInitialProps(ctx);
      return {
        ...initialProps,
        styles: [initialProps.styles, sheet.getStyleElement()],
      };
    } finally {
      sheet.seal();
    }
  }
  render() {
    return (
      <Html lang="ko">
        <Head />
        <body>
          <Main />
          <div id="modal-root" />
          <NextScript />
        </body>
      </Html>
    );
  }
}

profile
dygmm4288

0개의 댓글