mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-02-08 05:03:36 +08:00
19 lines
398 B
JavaScript
19 lines
398 B
JavaScript
module.exports = {
|
|
pluginOptions: {
|
|
electronBuilder: {
|
|
builderOptions: {
|
|
win: {
|
|
icon: './build/icons/icon.ico'
|
|
},
|
|
productName: 'ZY Player',
|
|
publish: ['github']
|
|
},
|
|
chainWebpackRendererProcess: config => {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
config.plugins.delete('prefetch')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|