next-boost icon indicating copy to clipboard operation
next-boost copied to clipboard

Add a cache layer for server-side-rendered pages with stale-while-revalidate. Can be considered as an implementation of next.js's Incremental Static Regeneration which works with getServerSideProps.

Results 19 next-boost issues
Sort by recently updated
recently updated
newest added

This looiks to be a regression from https://github.com/next-boost/next-boost/issues/3 When a page is no longer available after the page was cached, next-boost keeps serving it. It is marked as 'stale', but...

My production website randomly got a blank white page on the front page only. I need to manually clear the cache to get it back working again. I'm not sure...

Hi Team, next-boost is not working with latest feature of nextjs called standalone build, ``` // next.config.js module.exports = { // ... rest of the configuration. experimental: { outputStandalone: true,...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Hello! Let's say we have a Next.js project with a custom `express` server. Let's say it looks something like this: ```js const express = require("express"); const next = require("next"); const...

I am trying to add next boost to my existing next app with a custom express server. From the express example I am struggling to understand how to implement the...

We have a `paramFilter` config option which allows us to filter out some params that do not have impact on cache but in turn are important eg. `utm_` params and...

![image](https://user-images.githubusercontent.com/30447308/151704607-1ad34dbd-6848-42bd-afaf-27ff7920f5f4.png) Hi, sometime, maybe 1 in 3 days i has a memory leak in container log haven't any issues. Next 12.0.7 Next-boost latest Production ``` const Adapter = require('@next-boost/hybrid-disk-cache').Adapter module.exports...

Bumps [simple-get](https://github.com/feross/simple-get) from 4.0.0 to 4.0.1. Commits 0a1ad5d 4.0.1 e4af095 Merge pull request #73 from ranjit-git/master 6e21f5e code style 489f743 Bug fix: Thirdparty cookie leak 6e4468a Bug fix: thirdparty site...

dependencies

This PR automatically sets the `Cache-Control` header to `public, max-age=, must-revalidate` for pages that are served from cache with a TTL > 0. I'm up for adding more customizability to...