代码拉取完成,页面将自动刷新
const osType = require("os").type();
const osSpec = {
Windows_NT: { iconName: "icon.ico" },
Darwin: { iconName: "icon.png" },
Linux: { iconName: "linux-icon" }
}[osType];
const trayIconName = "tray@2x.png";
module.exports = {
pluginOptions: {
electronBuilder: {
mainProcessTypeChecking: false,
builderOptions: {
appId: "com.copytranslator.copytranslator",
asar: true,
extraResources: [
{
from: `dist_locales`,
to: `locales`
},
{
from: trayIconName,
to: trayIconName
},
{
from: osSpec.iconName,
to: osSpec.iconName
}
],
win: {
icon: osSpec.iconName,
target: [
{
target: "nsis",
arch: ["x64"]
},
{
target: "zip",
arch: ["x64"]
}
]
},
linux: {
target: [
{
target: "AppImage",
arch: ["x64"]
},
{
target: "deb",
arch: ["x64"]
},
{
target: "rpm",
arch: ["x64"]
}
],
icon: osSpec.iconName,
category: 'Education',
// https://www.electron.build/configuration/linux#debian-package-options
desktop: {
Icon: '/opt/copytranslator/resources/linux-icon/icon.png'
}
},
mac: {
target: [
{
target: "default",
arch: ["x64"]
}
],
icon: osSpec.iconName
},
nsis: {
installerIcon: osSpec.iconName,
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
license: "readable_license.txt"
}
},
externals: ["iohook", "shortcut-capture"],
// 这一步还蛮重要的,不然就会报错
nodeModulesPath: ["./node_modules"]
}
},
configureWebpack: {
devtool: 'source-map'
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。