nuxt-multi-cache
nuxt-multi-cache copied to clipboard
Advanced caching of components, routes and data for Nuxt 3. Dynamically define CDN cache control headers. Provides cache management API for purging items by key or using cache tags.
When trying to import types from either the package directly or from /dist/runtime/serverOptions i get the following typeerror: ``` Could not find a declaration file for module 'nuxt-multi-cache'. 'xxx/node_modules/nuxt-multi-cache/dist/module.mjs' implicitly...
It's a pretty strange decision to make 'app' folder and use it for module configuration storage. I found that this path is hardcoded in ~/node_modules/nuxt-multi-cache/dist/module.mjs line:147 ```js const resolvedPath =...
When using a custom `enabledForRequest()` function, Purge API calls return a 500. ```http POST http://localhost:3000/-/cache/purge/route X-Nuxt-Multi-Cache-Token: my-token Accept: application/json Content-Type: application/json ["my:key"] ``` ``` HTTP/1.1 500 Failed to load cache...
Updated overview/configuration.md document. Added multiCache object with configuration example.
When using the fs driver for route caching, my page is never served from cache (cache miss). It seems the server overwrites the cache entry on every request (I can...
Fixes #43 It seems the default `types` at `package.json` root is not taken into account when using `exports`. I already had this issue on a private repo and just faced...
Caching the cookies with a request is very problematic, as tracking cookies are then cached and breaks tracking. Any user selection around privacy cookie or settings is overwritten. Please can...
I am currently running nuxt v.3.10.3 and nuxt-multi-cache v3.1.1 and am having problems with the route cache. I get the following error in the browser console when I try to...