Stripe CSP when loading stripe.js – Html
I'm trying to load <script src="https://js.stripe.com/v3/"></script> on a static page, so I've added the following Content-Security-Policy: <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://js.stripe.com https://maps.googleapis.com; connect-src 'self' https://api.stripe.com https://hooks.stripe.com https://maps.googleapis.com; frame-src 'self' https://js.stripe.com https://hooks.stripe.com; " /> I then start my…