next.js/test/e2e/new-link-behavior/material-ui/src/createEmotionCache.js
createEmotionCache.js8 lines329 B
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 })
}
Quest for Codev2.0.0
/
SIGN IN