We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97be588 commit 8cf8c8cCopy full SHA for 8cf8c8c
README.md
@@ -52,7 +52,7 @@ and a `reply.helmet` decorator.
52
53
It accepts the same options as `helmet`. See [helmet documentation](https://helmetjs.github.io/).
54
55
-### Apply Helmet to all your application routes
+### Apply Helmet to all routes
56
57
Pass `{ global: true }` to register Helmet for all routes.
58
For granular control, pass `{ global: false }` to disable it at a global scope.
@@ -231,7 +231,7 @@ fastify.register(
231
)
232
233
fastify.get('/', function(request, reply) {
234
- // you can access the generated nonce by "reply.raw"
+ // access the generated nonce by "reply.raw"
235
reply.raw.scriptNonce
236
reply.raw.styleNonce
237
})
0 commit comments