From 468fd792ed45914eeb6c2427c12e48ee468db4ef Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 23 Aug 2019 19:39:40 -0700 Subject: [PATCH] fix: Allow iframes in CSP --- server/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/app.js b/server/app.js index a9cf3adb9..8cde1bafb 100644 --- a/server/app.js +++ b/server/app.js @@ -120,6 +120,7 @@ app.use( ], styleSrc: ["'self'", "'unsafe-inline'"], imgSrc: ['*', 'data:'], + frameSrc: ['*'], }, }) );