使用这个样板作为参考,我创建了一个Electron应用程序。它使用 webpack 来捆绑脚本并使用 express 服务器来托管它。
Webpack 配置实际上与this和 server this相同。
Electron 的脚本加载:
mainWindow.loadURL('file://' + __dirname + '/app/index.html');
并且 index.html 加载服务器托管的脚本:
<script src="http://localhost:3000/dist/bundle.js"></script>
我运行electron index.js
以构建应用程序并node server
启动使用 webpack 捆绑脚本的服务器。
它工作正常,我的 React 组件应用程序已安装。但是我如何将 react-router 集成到其中?
我以与在浏览器应用程序中相同的方式实现它。我收到此错误:
[react-router] Location "/Users/arjun/Documents/Github/electron-app/app/index.html" did not match any routes
它以文件路径为路径。通过样板代码没有帮助。我错过了什么?