'Waiting for update signal from WDS

I am currently trying to create a login page using Twitter authentication for my Vue.js application. I have been following this tutorial and this code. Whenever I run my project, I get

[HMR] Waiting for update signal from WDS...

Any ideas how I can overcome this WDS error? Thank you.

This is the error I receive in the browser's console.



Solution 1:[1]

This is very weird thing, I also had this error but when I remove "form" tag and replaced it with "div", It worked for me

Solution 2:[2]

This problem is caused by the form. Add $event attribute to your tag form and e.preventDefault(); to your method.

something like:

    <form action="" @submit="sendForm($event)">
    ....
    </form>
    <script>
    sendForm(e) {
        e.preventDefault();
        console.log("reload form")
    }
    </script>

Solution 3:[3]

In my case, I had an infinite loop at the start of the app as it had some bugs with authentication checks, preventing the Vue app to start correctly.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Pavan Tank
Solution 2 Constantine
Solution 3 henrykodev