You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
I found a helpful Discord post by Mark Knol:
Perhaps the code in the first paragraph should be the default. (It's already the default in the Webpack boilerplate...)
It involves a small change:
var fxhash = "oo" + Array(49).fill(0).map(_ => alphabet[(Math.random() * alphabet.length) | 0]).join('');
to
var fxhash = new URLSearchParams(window.location.search).get("hash") ?? "oo" + Array(49).fill(0).map(_ => alphabet[(Math.random() * alphabet.length) | 0]).join('')
And that'll enable things like
http://localhost:8080/?hash=oo8NXj8zdYBzETAyPLRj2RxaEqMJHbZf9TLqaCXiFpRyyuHbyq1
.The text was updated successfully, but these errors were encountered: