Browse Source

Disable crossOriginOpenerPolicy

pull/2105/head
Thomas 2 years ago
parent
commit
96b712b38f
  1. 3
      apps/api/src/main.ts

3
apps/api/src/main.ts

@ -45,7 +45,8 @@ async function bootstrap() {
scriptSrcAttr: ["'self'", "'unsafe-inline'"], // Allow inline event handlers
styleSrc: ["'self'", "'unsafe-inline'"] // Allow inline styles
}
}
},
crossOriginOpenerPolicy: false // Disable Cross-Origin-Opener-Policy header (for Internet Identity)
})
);
}

Loading…
Cancel
Save