This commit is contained in:
seb
2025-07-02 12:49:06 +02:00
commit edbd56f6a9
123 changed files with 32598 additions and 0 deletions

8
createEmotionCache.js Normal file
View File

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