Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

265
Views
Redirecting network requests in Storybook

I've been fighting with this for so long! I have network requests that need to happen in component stories, but they get sent out on Storybook's port which does them no good.

The closest I've gotten is this Storybook middleware:

const middleware = (router) => {
  router.post('/Search/myUrl', (req, res, next) => {
    res.header('Access-Control-Allow-Origin', '*');
    res.header('Access-Control-Allow-Headers: Origin, Content-Type, X-Auth-Token');
    res.redirect(307, 'http://localhost:61324/Search/myUrl');
  });
};

This does redirect the post request, but it gets caught in CORS and I have not been able to get past that no matter what headers I send. I have found very little online, this doesn't seem like a rare situation so I think I must be missing a simpler solution. Thank you in advance!

Thank you in advance!

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!