我刚刚打包了electron-quick-start,然后安装了'x-lae-region': [ { key: 'x-lae-region', value: process.env.AWS_REGION } ]
const response = {
status: '302',
statusDescription: 'Found',
headers: {
location: [{
key: 'Location',
value: 'http://<destinationdomainname>/goto/hello.html',
}],
'x-lae-region': [ { key: 'x-lae-region', value: process.env.AWS_REGION } ],
},
};
并运行了electron-packager
。我的node_modules\.bin\electron-packager ./ --platform=win32 --arch=ia32,x64 --out=releases --asar
只有1KB。文件夹大小为96MB和116MB。这对于这个应用来说太庞大了,它几乎没有任何作用。为什么尺寸如此之大?难道我做错了什么?有没有wat来减小尺寸?因为电子占用的磁盘空间比我的实际应用程序多,所以如果我分发一个电子应用程序,它将会非常庞大。
为什么会这样?