Disable threading for now, add locationProxy.host as an *empty string*, it will get overriden later, but TS doesn't know that.

This commit is contained in:
wearrrrr 2024-07-16 16:33:20 -05:00
parent d433f67d67
commit f42274d5ce
2 changed files with 6 additions and 2 deletions

View file

@ -11,7 +11,9 @@ function createLocation() {
return loc;
}
export const locationProxy = new Proxy({}, {
export const locationProxy = new Proxy({
host: ""
}, {
get(target, prop) {
const loc = createLocation();