How to download pdf file in React and Next.js
Downloading PDF Files in React and Next.js: A Step-by-Step Guide using simple < a /> tag
Table of contents
Public folder
Put your pdf file inside a public folder
<a/> tag
Point to the file with href="katalog.pdf", put download, put rel="noopener noreferrer" for security reasons, put target="_blank" inside <a/> tag, and that's it, you can download pdf.
<a href="/katalog.pdf" target="_blank" rel="noopener noreferrer" download>
Download Catalog
</a>