eligrey / eligrey/FileSaver.js
Save As Window Not Opening in Production Angular
Open
- Dominant language
- JavaScript
- Stars
- 22k
- Forks
- 4.3k
- PR merge metrics
- No merged PRs in 30d
Description
I am using filesaver for my Angular application. In development mode everything works file but in production , its not working and its not giving any errors. The save as window is not opening.
```
workbook.xlsx.writeBuffer().then((data) => {
let blob = new Blob([data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' });
fs.saveAs(blob, title + '.xlsx');
})
```
My hosted application is not https. Would that be a problem? . I have allowed all access to the hosted url.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.