Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/** @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;