darogo
darogo

Reputation: 51

webpack.config.js and vue.config.js

I am new to vue and I started a project from scratch.

I needed to install vuetify. However, I realized that I do not have webpack.config.js and vue.config.js.

Do I need to install it using npm or can I just directly make these config files manually?

Can help me how do I add this config files?

Upvotes: 2

Views: 1782

Answers (1)

Raffobaffo
Raffobaffo

Reputation: 2856

If you created your app with the cli, until you want to add your custom config, you do not need to add those files. If you need to add your custom configurations for webPack, you can manually create a vue.config.js and put there the setting for webPack, as explained in detail here.

Upvotes: 1

Related Questions