fix: Allow iframes in CSP

This commit is contained in:
Tom Moor
2019-08-23 19:39:40 -07:00
parent c1bef2db59
commit 468fd792ed

View File

@@ -120,6 +120,7 @@ app.use(
],
styleSrc: ["'self'", "'unsafe-inline'"],
imgSrc: ['*', 'data:'],
frameSrc: ['*'],
},
})
);