We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f58a1 commit bb738a1Copy full SHA for bb738a1
src/setupProxy.js
@@ -0,0 +1,7 @@
1
+module.exports = (app) => {
2
+ app.use((_, res, next) => {
3
+ res.setHeader("Cross-Origin-Opener-Policy", "same-origin");
4
+ res.setHeader("Cross-Origin-Embedder-Policy", "require-corp");
5
+ next();
6
+ });
7
+};
0 commit comments