2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
Regarding the jszip not a constructor error, there may be another error after configuring the config.js file:
Find the node_modulesxlsx-stylexlsx.js file at node_modules.
Will
if(typeof jszip === 'undefined') jszip = require('./js'+'zip').JSZip; (should be around line 1339 of the xlsx.js file)
Replace with
if(typeof jszip === 'undefined') jszip = require('./jszip.js');