noogle/website/createEmotionCache.ts

8 lines
170 B
TypeScript
Raw Normal View History

2022-11-26 12:36:08 +03:00
import createCache from "@emotion/cache";
const createEmotionCache = () => {
return createCache({ key: "css", prepend: true });
};
export default createEmotionCache;