WARN! This only works with redux-devtools@^2.1.5, later versions requires to ship with React.
Using Redux DevTools without React in your App!
Just follow redux-devtools guide but do not mount anything into your dom tree using React but reference a script:
<!-- your app -->
<div id="app"></div>
<!-- your bundle -->
<script src="/build/bundle.js"></script>
<!-- use this to mount panel into dom tree -->
<script src="https://unpkg.com/redux-devtools-script"></script>Remember to expose your Redux store to window Object
import store from './store'
window.ReduxStore = storeAnd it's done! Check out the Vue example!
MIT © EGOIST