I think we figured this out. On the localhost, it is a like a singlepage app, so after successfully logging in, it was able to find lock
object on any page. However, on the production site, it is converting everything to static pages. So, lock
object is only available on the signin
page. When it returns to the index
page, since the auth.js
file out of utils
is not referenced there, it doesn’t do anything. So, to solve the problem, auth.js
reference was added to the index.js
file and it works fine now. This was a bit tricky and glad that it is finally working.
1 Like