代码拉取完成,页面将自动刷新
同步操作将从 Elliott/CopyTranslator 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const osType = require("os").type();
const osSpec = {
Windows_NT: { iconName: "icon.ico" },
Darwin: { iconName: "icon.png" },
Linux: { iconName: "icon.png" },
}[osType];
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
const VuetifyLoaderPlugin = require("vuetify-loader/lib/plugin");
module.exports = {
transpileDependencies: ["vuetify"],
pluginOptions: {
electronBuilder: {
customFileProtocol: "./",
mainProcessTypeChecking: false,
chainWebpackRendererProcess: (config) => {
// config.when(process.env.NODE_ENV === "production", (config) => {
// config.plugin("analysis").use(new BundleAnalyzerPlugin());
// });
},
chainWebpackMainProcess: (config) => {
// config.when(process.env.NODE_ENV === "production", (config) => {
// config.plugin("analysis").use(new BundleAnalyzerPlugin());
// });
},
builderOptions: {
appId: "com.copytranslator.copytranslator",
publish: {
provider: "github",
owner: "copytranslator",
repo: "copytranslator",
},
asar: true,
extraResources: [
{
from: `dist_locales`,
to: `locales`,
},
{
from: `external_resource`,
to: `external_resource`,
},
{
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",
},
},
deb: {
depends: ["libpng16-16"],
},
rpm: {
depends: ["libpng"],
},
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", "active-win","@nut-tree/nut-js"],
// 这一步还蛮重要的,不然就会报错
nodeModulesPath: ["./node_modules"],
},
},
configureWebpack: {
plugins: [new VuetifyLoaderPlugin()],
optimization: {
usedExports: true,
},
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。