tatsu
tatsu

Reputation: 2536

How does one know if a project is using Webpack

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

Answers (1)

citizen conn
citizen conn

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

Related Questions