[Vuejs]-How to remove Bootstrap from .NET Core Template

0👍

I’ll answer only for reference, Boostrap and others vendor files are registered under the vendor entry in the file webpack.config.vendor.js, and whit this information, when the project is started, webpack generates a manifiest.json, that contains the vendors that are going to be included in vendor files (vendor.css, vendor.js).

If you want to change this files is necessary update the file webpack.config.vendor.js and delete the dist folder under wwwroot, whit this, the file is regenerated and the vendor files updated.

Can be necessary restart de application in debug mode 2 times (F5).

Leave a comment