mirror of
https://github.com/cuiocean/ZY-Player.git
synced 2026-02-11 06:25:21 +08:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
module.exports = {
|
|
pluginOptions: {
|
|
electronBuilder: {
|
|
chainWebpackRendererProcess: config => {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
config.plugins.delete('prefetch')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|