加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
norman 提交于 2022-06-15 22:32 . update ffmpeg
module.exports = {
pluginOptions: {
electronBuilder: {
externals: ['ffmpeg-static', 'fluent-ffmpeg'],
nodeModulesPath: ['../../node_modules', './node_modules'],
preload: 'src/preload.js',
builderOptions: {
productName: 'BilibiliVideoDownload',
appId: 'com.blogwy.bilibilivideodownload',
dmg: {
contents: [
{
x: 410,
y: 150,
type: 'link',
path: '/Applications'
},
{
x: 130,
y: 150,
type: 'file'
}
],
sign: false,
icon: 'build/icons/icon.ico'
},
mac: {
icon: 'build/icons/icon.icns',
identity: null,
target: {
target: 'dmg'
}
},
nsis: {
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
installerIcon: 'build/icons/icon.ico',
uninstallerIcon: 'build/icons/icon.ico',
installerHeaderIcon: 'build/icons/icon.ico',
createDesktopShortcut: true
},
win: {
icon: 'build/icons/icon.ico',
target: 'nsis'
},
linux: {
icon: 'build/icons'
}
}
}
},
configureWebpack: {},
css: {
loaderOptions: {
less: {
lessOptions: {
javascriptEnabled: true,
modifyVars: {
// less 全局变量
// 主色
'primary-color': '#fb7299',
'link-color': '#fb7299',
'text-color': 'rgba(0, 0, 0, 0.65)'
}
}
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化