Unable to download PDF
Unanswered
West African Lion posted this in #help-forum
West African LionOP
In nextjs 14 I'm unable to import PDF files from the assets folder.
I am creating a portfolio, and have one part where u need to download my CV, is it possible, and how if it is?
I want to download a pdf file on button click. I tried this way :
also, I tried this :
It's showing an error while importing or downloading. How can I solve this problem?
I am creating a portfolio, and have one part where u need to download my CV, is it possible, and how if it is?
I want to download a pdf file on button click. I tried this way :
import CV from '../../../../assets/cv/Yeasin2002.pdf';also, I tried this :
<a href={"../../../../assets/cv/Yeasin2002.pdf"} download target="_blank" rel="noopener noreferrer" type="file">
</a>It's showing an error while importing or downloading. How can I solve this problem?
1 Reply
can you put the pdf to public folder and make the a tag to
<a href={"Yeasin2002.pdf"} download target="_blank" rel="noopener noreferrer" type="file">
</a>