Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly set cache-control: no-cache header for 404 responses #2447

Open
pi0 opened this issue May 17, 2024 · 0 comments
Open

Explicitly set cache-control: no-cache header for 404 responses #2447

pi0 opened this issue May 17, 2024 · 0 comments

Comments

@pi0
Copy link
Member

pi0 commented May 17, 2024

          If anyone is still getting this problem, just add this plugin to Nitro:
export default defineNitroPlugin(nitroApp => {
  nitroApp.hooks.hook('error', (error, { event }) => {
    if (event && (error as any).statusCode === 404) {
      setHeader(event, 'cache-control', 'no-cache')
    }
  })
})

Originally posted by @andresilva-cc in #1742 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant