We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
window.location = { href: '/', };
produces below error;
Type '{ href: string; }' is missing the following properties from type 'Location': ancestorOrigins, hash, host, hostname, and 8 more.ts(2740)
The text was updated successfully, but these errors were encountered:
I changed it to window.location.href = '/', not sure if that's what the tutorial intended
Sorry, something went wrong.
I've changed to it:
delete window.location; window = Object.create(window); Object.defineProperty(window, 'location', { value: { href: '/', }, writable: true, });
Based on this answer.
Will push the new version later today
No branches or pull requests
Hi,
produces below error;
Type '{ href: string; }' is missing the following properties from type 'Location': ancestorOrigins, hash, host, hostname, and 8 more.ts(2740)
The text was updated successfully, but these errors were encountered: