I use webpack (1.12.2), react (0.14.2), react-router (1.0.0-rc4) and history (1.13.0) libraries.
When I build project with webpack, in google chrome console I get error:
Uncaught SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL 'file:///Users/and/devel/Wond/index.html' cannot be created in a document with origin 'null'.
In createBrowserHistory.js line 41.
In my source code (index.jsx) I use createBrowserHistory:
var createBrowserHistory = require('history/lib/createBrowserHistory');
let history = createBrowserHistory();
ReactDOM.render(<Router routes={routes} history={history} />, document.getElementById('content'));