1 Star 0 Fork 0

天行有常/CopyTranslator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.12 KB
一键复制 编辑 原始数据 按行查看 历史
许自强 提交于 2020-04-07 17:38 . linux: fix icon bug on deepin
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'
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/simondong1979/CopyTranslator.git
git@gitee.com:simondong1979/CopyTranslator.git
simondong1979
CopyTranslator
CopyTranslator
master

搜索帮助