【发布时间】:2016-03-03 07:38:32
【问题描述】:
【问题讨论】:
-
那是什么版本的 react-router?我在 2.0.1 上遇到了同样的问题。我绕过它的方法是使用哈希历史。无论如何,您都没有针对任何 SEO 工具。
-
你能解决这个问题吗?我也遇到了这个问题,下面给出的解决方案不起作用。
【问题讨论】:
我发现做到这一点的最佳方法是使用path.join,您知道这真的很有帮助吗?
# IMPORT PATH ES6/7
# es6: const path = require('path');
# CONSTRUCT YOUR BUILD PATH
const build_path = path.join(__dirname), '/build');
# mainWindow.loadURL('file://' + build_path + '/index.html')
console.log('file://' + build_path + '/index.html');
# -> file://build/index.html
【讨论】: