Skip to content

Instantly share code, notes, and snippets.

@AbhiAgarwal192
Created April 17, 2021 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhiAgarwal192/5f076698852b00be1ad0845b19e5d3cf to your computer and use it in GitHub Desktop.
Save AbhiAgarwal192/5f076698852b00be1ad0845b19e5d3cf to your computer and use it in GitHub Desktop.
module.exports = (app) => {
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "*");
next();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment