【发布时间】:2022-02-15 03:20:48
【问题描述】:
我的自定义样式被全局样式覆盖。 我正在使用材质 ui 和下一个 js。
【问题讨论】:
标签: reactjs material-ui next.js
我的自定义样式被全局样式覆盖。 我正在使用材质 ui 和下一个 js。
【问题讨论】:
标签: reactjs material-ui next.js
prepend: true 应该添加
import createCache from '@emotion/cache';
// prepend: true moves MUI styles to the top of the <head> so they're loaded first.
// It allows developers to easily override MUI styles with other styling solutions, like CSS modules.
export default function createEmotionCache() {
return createCache({ key: 'css', **prepend: true** });
}
【讨论】: