I am just getting started on Vue.js and I seem to have run into a weirdness I could use some help with. When I creates a new project with the CLI it creates the new project folder in the root of my user
folder. This is just plain bad practice. I would not mind putting them into a vue-projects
subfolder but would like it even better if I could put them in my c:\inetpup\
folder.
I can't seem to do either. If I specify a path during create I get the following error Error: name can only contain URL-friendly characters
. I have tried a number of different formats vue create "vueprojects\helloworld"
, vue create "vueprojects/helloworld/"
, vue create ".\vueprojects\helloworld"
, vue create "c:\inetpub\vueprojects\helloworld"
among others. I even true the vue ui but it gives me a JS run time error.
The docs and my Google fu are failing me. Seems like such a simple thing so I am baffled.