Reputation: 2536
I started from this : https://github.com/vuejs/vue-cli
I'm not sure if it uses Webpack or not.
What files would a project containing/using webpack contain?
Upvotes: 5
Views: 3911
Reputation: 15390
If your project is using Webpack then there will be a webpack.config.js
file in the root of the project.
Edit: I guess webpack.config.js
is no longer necessary. So you could look at the package.json and see if webpack is a dependency.
Upvotes: 3