Next.js Discord

Discord Forum

<Link> with download

Answered
Africanized honey bee posted this in #help-forum
Open in Discord
Africanized honey beeOP
How can I make a link to a pdf just download the file instead of open it?
Answered by not-milo.tsx
The a tag has a download attribute that you can use to tell the browser to download the file instead of opening it, and since the Link component is a sophisticated wrapper around it you can pass that attribute there too.
View full answer

3 Replies

The a tag has a download attribute that you can use to tell the browser to download the file instead of opening it, and since the Link component is a sophisticated wrapper around it you can pass that attribute there too.
Answer
You can read the docs on the download attribute here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attributes
Africanized honey beeOP
Ok thanks. Yeah you're it is being passed in. I also see my issue now. It's not on the same domain. 😣