Я пытаюсь реализовать styled-components
в проекте React с помощью Next js. Проблема в том, что, хотя я могу реализовать и увидеть стили, есть небольшая задержка, когда я вижу это в браузере. Сначала он загружает компонент без стиля, а через 22 мс применяется стиль. Что я делаю не так? Спасибо
Вот мой код!
страниц / индекс. js
import React from "react";
import Home from "../components/home/index";
const index = () => {
return (
<React.Fragment>
<Home />
</React.Fragment>
);
};
export default index;
компонентов / дома. js
import React from "react";
import styled from 'styled-components';
const Title = styled.h1`
color: red;
`;
function Home() {
return (
<div>
<Title>My First Next.js Page</Title>
</div>
);
}
export default Home;
babel.r c
{
"presets": ["next/babel"],
"plugins": [["styled-components", { "ssr": true }]]
}
страниц / _документ. js
import Document from 'next/document';
import { ServerStyleSheet } from 'styled-components';
export default class MyDocument extends Document {
static async getInitialProps(ctx) {
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();
}
}
}