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 的框架被集成进来.
开启了babel 或者v12.1以下的旧版本
v12 默认是 rust编写的 swc 去编译 , 如果创建了
.babelrc
文件,则会全部换回babel编译,
(因为swc功能比较少,所以有时候还是得用babel)
v12以下的版本用的也是babel编译