Link Issue When Navigating to External Site

      <div>
        <Link
          href="https://redwoodjs.com/"
          target="_blank"
          rel="noreferrer"
        >
          Upgrade
        </Link>
      </div>

When I run this locally I get the error:

history.js:27 Uncaught TypeError: Failed to construct 'URL': Invalid URL
    at navigate (history.js:27:1)
    at onClick (links.js:86:1)

Please advise. Thank you!

Hey @reinhal, the Link component is for client-side navigations within the context of your app. If you want to link to an external location, just use the anchor element.