Skip to content
Snippets Groups Projects
Commit 949266ea authored by richard.petersen's avatar richard.petersen :sailboat:
Browse files

Fix: COEP is set to require-corp by default with helmet update

parent bea4a835
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,8 @@ export function createApp () {
next()
})
app.use(helmet({
contentSecurityPolicy: false
contentSecurityPolicy: false,
crossOriginEmbedderPolicy: false
}))
app.use('/healthy', health.LivenessEndpoint(healthCheck))
app.use('/ready', health.ReadinessEndpoint(healthCheck))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment