I'm adding middleware to generate a nonce for inline scripts to my app. I'm following the instructions at https://nextjs.org/docs/app/building-your-application/configuring/content-security-policy
The instructions state "Every time a page is viewed, a fresh nonce should be generated. This means that you must use dynamic rendering to add nonces."
How do I ensure dynamic rendering?
Do I have to add the export const dynamic = "force-dynamic"; directive to every single page?
I'm using app router.