-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Not working when deployed to server. Anyone has this issue? #52
Comments
I'm using Vite. Sad. :( |
hello,
|
Same issue. It's stopped completly working from the time I migrated from vue-cli/webpack to "vite". This solution works for me:
npm install / build and that's it! I do not know the exact source of the problem but that solved it! |
Same issue here. We also switched to Vite and this stopped working completely. Our use case was simple so I just replaced this package with a simple @mousemove watcher with timeout to set user back to idle. mouseMove() {
if (this.lastMouseMoveTimeout) clearTimeout(this.lastMouseMoveTimeout)
if (this.userIdle) this.setUserActive();
this.lastMouseMoveTimeout = setTimeout(() => {
this.setUserIdle();
}, 1000 * USER_IDLE_SECONDS)
},
|
Hello. Is there anyone of here have this issue where idle-vue works great in localhost but not in server? Thanks.
The text was updated successfully, but these errors were encountered: