[Solved]Vue-cli Slow Project Creation

Tilak poudel
2 min readMay 21, 2020

Today I am going to share the how I sloved the problem I faced while diving into Vuejs framework. It too extremly a lot of time while creating project through Vue-cli although I had fast internet connection .

Here goes my story,

I was excited after i globally installed vue and vue-cli and could not wait to create a new project. So i attempted to create a my very first project with the command: vue create <project-name>

Around after half an hour, it was still going on beside the considerable fast internet . I could not wait longer and tried through GUI creation method running vue ui in the terminal but i could not create by this method too as it took longer time than before .

After wandering several hours through various blogs and other materials including stackoverflow , i could finally fix the problem .

Here is how i could solve the problem.

Step 1

I checked the configuration file by command : vue config

Step 2

I updated the configuration file named ‘.vuerc’ in the resolved path using the the command :

cd /home/poudell

sudo nano .vuerc

open the file in nano and changed the useTaobaoRegistry to false.

Step 3

I Saved the configuration by pressing CTRL+X and then Y

That’s all. You can now create vue project with vue-cli / GUI

I hope you find this helpful? See you in my next post.

Tags:#vuejs #command-line #vue# vue-cli

--

--