noogle/website/createEmotionCache.ts

8 lines
170 B
TypeScript

import createCache from "@emotion/cache";
const createEmotionCache = () => {
return createCache({ key: "css", prepend: true });
};
export default createEmotionCache;