React Next.js styled-components 报错: Warning: Prop `className` did not match. Server:...

React + Next.js + StyledComponents

浏览器console报错信息:

Warning: Prop `className` did not match. Server: "sc-gsDKAQ WHHak" Client: "sc-bdvvtL fKlryF"

大概就是 (hydrate) 水合注水失败了, 虽然是个 warning , 但 界面却是不正常的. 这个警告必须解决.

解决方案

Next.js 12.1

next.config.js

compiler中添加styledComponents: true,
只要添加了styledComponents 就是开启了SSR

true保留css前缀名称(比如: AdminLayout__StyleDiv-sc-866efa7e-0,
在源码中就是AdminLayout中的StyleDiv) ,

false 则随机生成class名称 (比如: sc-gsDKAQ WHHak , 完全不知道源码中的class名称)

/** @type {import('next').NextConfig} */
const nextConfig = {
    reactStrictMode: true,
    compiler: {
        styledComponents: true,
    },
};

module.exports = nextConfig;

官方文档截图
这个是 v12.1 新增的.
估计以后还会有新的功能或者Css in js 的框架被集成进来.
React Next.js styled-components 报错: Warning: Prop `className` did not match. Server:..._第1张图片

开启了babel 或者v12.1以下的旧版本

v12 默认是 rust编写的 swc 去编译 , 如果创建了.babelrc文件,则会全部换回babel编译,
(因为swc功能比较少,所以有时候还是得用babel)
v12以下的版本用的也是babel编译

babel插件

你可能感兴趣的:(JavaScript,前端,react.js,Next.js,SSR,CssInJs)