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

416
Views
target _blank url not working in react js production build

When I clicked on the link, I got a 404 error in the production build of react js and showed an error on the firebase hosting website.

<Link target='_blank' to={'/property-details?id='some_id'}/>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

To fix it, you can change your code to below.

<Link to="/home" target="_blank" rel="noopener noreferrer" />

Just add the rel attribute to fix it. This may also improve your page performance.


If you want to use the <a> tag instead, then you can use the following code.

<a href="https://stackoverflow.com/" target="_blank" rel="noreferrer noopener">Stack Overflow</a>

The rel attribute will improve page performance.

about 4 years ago · Juan Pablo Isaza Report
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!