I have a file that I want to download on click. When I click on the link the download is launched an at the end I am told that the file is not found. Below is the content of my tag.
<a href="/media/{{file.filePath}}" download>Download</a>
But if I add the base url like this :
<a href="https://www.example.com/media/{{file.filePath}}" download>Download</a>
On click the file is opened in the browser while I want to download it.
Thanks in advance