I'm new to NextJS, and I'm working on a page that's under a /security/ path.
On the file /app/security/page.jsx I have a simple link to an anchor tag
<Link href="#data-storage" scroll={false}>Data Storage</Link>
Clicking this link will navigate to /#data-storage instead of /security/#data-storage.
Changing the Link to an "a" works as expected. Why is Link doing this?