(node:4236) [DEP0128] DeprecationWarning: Invalid ‘main’ field in ‘E:\xxx\dist_electron\package.json’ of ‘background.js’. Please either fix that or report it to the module author
(Use electron --trace-deprecation ... to show where the warning was created)
解决方法 2步:
1.打包生成的 dist_electron 中 index.js 重命名为 background.js
2.根源解决 vue.config.js 中增加配置
chainWebpackMainProcess: (config) => {
config.output.filename('background.js');
}

文章描述了在Electron项目中遇到DEP0128警告的问题,原因是package.json中的main字段无效。解决方法包括将dist_electron目录下的index.js重命名为background.js,并在vue.config.js中配置chainWebpackMainProcess,设置output.filename为background.js,以正确指定入口文件。
3763

被折叠的 条评论
为什么被折叠?



