Replaces `window.replace` calls with `window.location.assign`
Fix security issues (#18)
* point to `dev`
* fix(redirect): pushState
window.replace is causing problems in navigation, as
it breaks the browser history. Using history.pushState
redirects as `replace` but it preserves the history.
* fix(package.json)
Set main file back to the build
* feat(new-bundle)
Update bundle with latest changes
* Update package.json
* fix(security)
pushState() is causing problems. try with
`location.assign`
* feat(new-build)
* feat(new-version)