No Login Box after installation

Hi @shardaatul04,

there is most probably something wrong with building your JS. When you open the browser console, you should be able to observe some error like “… is not a function”.
This is a current issue that already has several threads. It basically boils down to the integration of the new package manager yarn. Try the following:

Run

$ bench build

and observe the errors. Typically, there are some issues like Update error: Cannot babelify - Unknown plugin "transform-object-rest-spread"

Execute

$ sudo npm install -g yarn
$ sudo bench update

If bench build still fails, install the mentioned missing dependencies (npm install (...) )

Hope this helps.

2 Likes