使用此样板作为参考,我创建了一个Electron应用程序.它使用webpack捆绑脚本并表达服务器来托管它.
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组件App已安装.但是我如何将react-router集成到这个中呢?
我以与在浏览器应用程序中相同的方式实现它.我收到此错误:
[react-router] Location "/Users/arjun/Documents/Github/electron-app/app/index.html" did not match any routes
它将文件路径作为路径.通过锅炉板代码没有帮助.我错过了什么?