diff --git a/content/controllers.md b/content/controllers.md index 34818fb953..b20cabca96 100644 --- a/content/controllers.md +++ b/content/controllers.md @@ -226,7 +226,7 @@ To specify a custom response header, you can either use a `@Header()` decorator ```typescript @Post() -@Header('Cache-Control', 'none') +@Header('Cache-Control', 'no-store') create() { return 'This action adds a new cat'; }