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