UNPKG

nuxt-render-cache

Version:

Powerful caching library for Nuxt 3 applications. Solves SSR performance issues with flexible caching system supporting TTL, locks, and distributed servers. Cache Vue components and async data with soft/hard TTL strategy.

8 lines (4 loc) 248 B
import type { NuxtModule } from '@nuxt/schema' import type { default as Module } from './module.mjs' export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any> export { default } from './module.mjs'