From 9e089cc7cdb8aa8ee269ed13ab7930879fb2152e Mon Sep 17 00:00:00 2001 From: zadam Date: Wed, 18 May 2022 22:56:29 +0200 Subject: [PATCH] disable COEP, fixes #2858 --- src/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.js b/src/app.js index abc3c2451..0b984448c 100644 --- a/src/app.js +++ b/src/app.js @@ -20,7 +20,8 @@ app.set('view engine', 'ejs'); app.use(helmet({ hidePoweredBy: false, // errors out in electron - contentSecurityPolicy: false + contentSecurityPolicy: false, + crossOriginEmbedderPolicy: false })); app.use(express.text({limit: '500mb'}));