UNPKG

@trieb.work/nextjs-turbo-redis-cache

Version:

The ultimate Redis caching solution for Next.js. Built for production-ready, large-scale projects, it delivers unparalleled performance and efficiency with features tailored for high-traffic applications.

15 lines (13 loc) 263 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], outDir: 'dist', format: ['esm', 'cjs'], dts: true, splitting: false, sourcemap: true, clean: true, target: 'es2020', shims: false, minify: false, });