Files
lander/src/createEmotionCache.js

6 lines
145 B
JavaScript
Raw Normal View History

2025-08-09 01:12:10 +02:00
import createCache from '@emotion/cache';
export default function createEmotionCache() {
return createCache({ key: 'css', prepend: true });
}