# 禁用ETag生成
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:
module.exports = {
generateEtags: false,
}
# Related
Introduction to next.config.jsLearn more about the configuration file used by Next.js.