nextjs-toploader
nextjs-toploader copied to clipboard
Disable behaviour for anchor tags
Is it possible to disable bar animation for a tags with '#' ?
I have the same issue when letting the user download a file by using this:
export function downloadBlob(blob: Blob, fileName: string): void {
const link = document.createElement("a");
link.href = URL.createObjectURL(blob);
link.download = fileName;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
Seems like https://github.com/TheSGJ/nextjs-toploader/issues/61#issuecomment-1853335459 fixes this and some other issues