I have an electron app which writes to an excel file:
`var Excel = require('exceljs');
…
function writeExcel(dataList){
//do some stuff here
}
`
This works fine in development. However, after packaging it with electron packager, I have the following error:
`Uncaught (in promise) Error: EACCES: permission denied, open './Analysis.xlsx'`
I can't figure out what the problem is. Anyone able to provide some assistance? Thanks