File size: 331 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/** @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;
|