This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Prisma } from "@prisma/client"; | |
import Redis from "ioredis"; | |
const mutationActions = ["create", "update", "delete", "deleteMany", "updateMany"]; | |
const queryActions = ["findUnique", "findMany", "count"]; | |
const allActions = [...mutationActions, ...queryActions]; | |
export function cacheMiddleware( | |
redis: Redis, | |
cacheDuration = 100 // 100 seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |