Files and folders generated by the Vue CLI
The Vue CLI has generated the files and folders needed to get started with our Vue.js development. Let's look at each of these in turn:
node_modules folder
: This folder contains the libraries downloaded from the npm.public folder
: This folder contains the HTML file and favicon. You will only see one HTML file in the public folder, hence the term single-page application.src folder
: This folder is the directory where we will write business logic, create Vue file components, and JavaScript or TypeScript files..browserlistrc
: This file is a tool for describing the app's target browsers..eslintrc.js
: This file is a configuration tool for ESLint..gitignore
: This file is used for not committing directories or files in Git. An excellent example of a directory that must be ignored isnode_modules
. The file size ofnode_modules
is large but can always be retrieved in the project by runningnpm install
in the...