[Vuejs]-Creating a vue app based on web-pack simple template using vue-cli 3.X

2👍

vue cli 3 has moved on to implement a plugin based approach rather than template-based approach.

If you still want to create a project using init you can install a global bridge:

npm install -g @vue/cli-init
# vue init now works exactly the same as vue-cli@2.x
vue init webpack-simple my-project

Reference – Pulling 2.x template

The project created by vue cli 3 uses webpack under the hood. The webpack configuration(webpack.config.js) is created at runtime.
You should use vue.config.js to configure webpack

Leave a comment