iBet uBet web content aggregator. Adding the entire web to your favor.
iBet uBet web content aggregator. Adding the entire web to your favor.



Link to original content: http://nextjs.org/docs/pages/api-reference/next-config-js/generateEtags
next.config.js Options: generateEtags | Next.js
Skip to content

generateEtags

Next.js will generate etags for every page by default. You may want to disable etag generation for HTML pages depending on your cache strategy.

Open next.config.js and disable the generateEtags option:

next.config.js
module.exports = {
  generateEtags: false,
}