Hello,
when I activate a Content Security Policy with the following directives:
SECURE_CSP = {
"object-src": [CSP.NONE],
"base-uri": [CSP.NONE],
"script-src": [CSP.NONCE, CSP.STRICT_DYNAMIC],
}
the Django admin site breaks, because no nonces are added to the scripts used there.
What is a good way to approach this?