79304797

Date: 2024-12-24 05:25:59
Score: 1.5
Natty:
Report link

Via next.config.js

Set the header no-cache on the path that you want.

module.exports = {
  headers: () => [
    {
      source: '/:path*',
      headers: [
        {
          key: 'cache-control',
          value: 'no-cache',
        },
      ],
    },
  ],
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Rahul M Navneeth