我的电子减少应用程序在webpack中有2个条目,如下所示
entry: {child: './src/child',
home: './src/app'
},
output: {
path: __dirname,
filename: '[name].bundle.js',
libraryTarget: 'commonjs2'
},
它在本地运行时运行良好,但是在windows中安装了exe。使用home.bundle.js的redux组件的电子窗口工作正常,但使用child.bundle.js的其他电子窗口不能渲染dom组件。
但它在本地运行中工作正常。
我正在使用https://github.com/dustintownsend/electron-react-boilerplate