mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 23:16:47 +00:00
15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
import Keyv from 'keyv'
|
|
|
|
import {
|
|
isPreviewImageSupportEnabled,
|
|
redisUrl,
|
|
redisNamespace
|
|
} from './config'
|
|
|
|
let db: Keyv
|
|
if (isPreviewImageSupportEnabled) {
|
|
db = new Keyv(redisUrl, { namespace: redisNamespace || undefined })
|
|
}
|
|
|
|
export { db }
|