/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/cache-handler-redis/next.config.js
13 строк
331 B
Arseny
Update Redis Cache example with stabilized API (#60800)
21 янв 2024, 05:40
Не верифицирован
21 янв 2024, 05:40
3b46f22
Код
Авторство
О чём код?
/** @type {import('next').NextConfig} */ const nextConfig = { cacheHandler: process.env.NODE_ENV === "production" ? require.resolve("./cache-handler.js") : undefined, env: { NEXT_PUBLIC_REDIS_INSIGHT_URL: process.env.REDIS_INSIGHT_URL ?? "http://localhost:8001", }, }; module.exports = nextConfig;