Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe how to enable COEP #884

Open
mischnic opened this issue Jul 7, 2021 · 2 comments
Open

Describe how to enable COEP #884

mischnic opened this issue Jul 7, 2021 · 2 comments

Comments

@mischnic
Copy link
Member

mischnic commented Jul 7, 2021

parcel-bundler/parcel#6499 (comment)

parcel-bundler/parcel#6976 (comment)

Add a .proxyrc.js with

module.exports = function (app) {
  app.use((req, res, next) => {
    res.removeHeader('Cross-Origin-Resource-Policy');
    res.removeHeader('Cross-Origin-Embedder-Policy');
    next();
  });
};
@devongovett
Copy link
Member

Or rather, enable it, now that parcel-bundler/parcel#6789 has been merged. 😉

@mischnic mischnic changed the title Describe how to disable COEP Describe how to enable COEP Aug 29, 2021
@AnthonyHidalgo
Copy link

Agreed @devongovett

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants