且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

材质UI/Webpack/React-生产模式下的className优化/缩小

更新时间:2023-12-04 21:36:40

样式 className 在生产模式下不是确定性的.

styles className is not designed as deterministic in prod mode.

但是,生成的 @ material-ui/core 组件的类名的行为不同.满足以下条件时,类名是确定性的:

But the generated class names of the @material-ui/core components behave differently. When the following conditions are met, the class names are deterministic:

  • 仅使用一个主题提供程序(无主题嵌套)
  • 样式表的名称以Mui(所有Material-UI组件)开头.
  • 类名称生成器的disableGlobal选项为false(默认值).

引用: