I'm following a tutorial on a site about creating SPA. At some point it instructs to init the vue app this way:
vue init webpack-simple my-project
This, doesn't work for me. After 1 hour of searching through stack overflow I have found that for vue-cli 3.x (the version I'm using) the syntax has changed and now I must use:
vue create my-project
My question is, how do I init a project based on the webpack-simple template. This way of initing/creating a project asks some questions when the command is executed, but it says nothing about webpack. So, I'm a bit confused.
Thanks in advance.