我正在使用带混音的样式化组件
我得到了"Prop className does not match"这个错误,但我不知道如何解决这个错误
我搜索了这个错误,但只有关于下一个js的答案
帮帮我
- 控制台错误**
- 控制台错误**
Warning: Prop `className` did not match. Server: "sc-gswNZR iqcxXn" Client: "sc-bcXHqe djVGJv"
这是我刚开始用混音和样式化组件开发项目的代码
我认为这是因为服务器端渲染问题,但我无法解决这个错误
- 代码**
import { Link } from "@remix-run/react";
import styled from "styled-components"
export const Container = styled.div`
text-align: center;
&& img{
width: 100px;
}
`
export default function Index() {
return (
<Container>
<Link to="remixtamain">
<img src={"https://ifh.cc/g/jd5MrN.png"}/>
</Link>
</Container>
);
}
1条答案
按热度按时间sbdsn5lh1#
我在一份官方文件中找到了方法
https://github.com/remix-run/examples
这是SSR样式设置示例
首先我像这样编辑entry.server.tsx
我添加了以下{文档类型===“未定义”?“样式”:根tsx中为空
在Head标记中
和它的工作!