Files
reactShop/createEmotionCache.js
2025-07-02 12:49:06 +02:00

8 lines
211 B
JavaScript

import createCache from '@emotion/cache';
export default function createEmotionCache() {
return createCache({
key: 'css',
speedy: false // Disable speedy mode for SSR - matches working test
});
}