I am using the 1.10-beta4 release to try and run a Vue application. And it will load and land on the Login page normally. I can navigate around the “guest” routes. But I cannot submit the login form successfully or the register form successfully.
The only thing I see in the console is
02-02 15:18:21.753 4377 4479 W MeteorWebApp: Asset /socket.io/ not found in bundle 08cbf325c67ac8412eb4201071671bbf9030be48:file:///android_asset/www/application, no parent bundle
over and over. Has anyone else seen this?
Update
Is there anything that i need to do to use version 1.10?
I created a new application using meteor create and then added the android platform. The error of socket.io missing from bundle started when I added akryum:vue-component from atmosphere. It’s a dependency of vue-component. I’ve tried adding socket.io-client@2.2.0 via npm install, but it doesn’t work. Can anyone explain why atmosphere dependencies may not be satisfied by npm packages?
to me this has always seemed like a hot module reloading issue. I have tried using the the NO_HMR=1 env variable to disable that feature without any luck. maybe try running you app with the --production flag to see if that will disable that feature from running.